Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/dorschw/riff into fix-inval…
Browse files Browse the repository at this point in the history
…id-ruff-run
  • Loading branch information
dorschw committed Dec 10, 2024
2 parents b8c6fc3 + f525305 commit 3f5958a
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 30 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.8.1
rev: v0.8.2
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -28,18 +28,18 @@ repos:
rev: v1.0.0
hooks:
- id: check-poetry
stages: [push]
stages: [pre-push]

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.14
rev: v0.23
hooks:
- id: validate-pyproject
stages: [push]
stages: [pre-push]
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.42.4
rev: 39.49.3
hooks:
- id: renovate-config-validator
stages: [push]
stages: [pre-push]

- repo: https://github.com/asottile/dead
rev: v1.5.2
Expand Down
38 changes: 19 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"pre-commit": {
"enabled": true
"enabled": true,
"automerge": true
},
"packageRules": [
{
"matchPackagePatterns": ["ruff", "charliermarsh/ruff-pre-commit"],
"groupName": "ruff",
"automerge": true
"automerge": true,
"matchPackageNames": [
"/ruff/",
"/charliermarsh/ruff-pre-commit/"
]
}
]
}

0 comments on commit 3f5958a

Please sign in to comment.