We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab3cb1 commit a7e2984Copy full SHA for a7e2984
1 file changed
.pre-commit-config.yaml
@@ -13,13 +13,18 @@ repos:
13
hooks:
14
# Run isort to check only (don't modify files)
15
- id: isort
16
- args: [ --check-only ]
+ args: [--check-only, --filter-files]
17
- repo: https://github.com/astral-sh/ruff-pre-commit
18
# Ruff version.
19
rev: v0.14.4
20
21
# Run the linter to check only (don't modify files)
22
- id: ruff-check
23
+ - repo: https://github.com/PyCQA/flake8
24
+ rev: 7.3.0
25
+ hooks:
26
+ - id: flake8
27
+ additional_dependencies: [flake8-pyproject]
28
- repo: https://github.com/crate-ci/typos
29
rev: v1.39.1
30
0 commit comments