We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eabfa4 commit 5e2db71Copy full SHA for 5e2db71
1 file changed
.pre-commit-config.yaml
@@ -2,9 +2,12 @@ repos:
2
- repo: https://github.com/astral-sh/ruff-pre-commit
3
rev: v0.14.0
4
hooks:
5
- - id: ruff
6
- args: [--fix, --exit-non-zero-on-fix]
7
- - repo: https://github.com/psf/black
+ # Run the linter.
+ - id: ruff-check
+ args: [ --fix ]
8
+ # Run the formatter.
9
+ - id: ruff-format
10
+ - repo: https://github.com/psf/black-pre-commit-mirror
11
rev: 25.9.0
12
13
- id: black
0 commit comments