forked from ikamensh/flynt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
29 lines (29 loc) · 851 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
29 lines (29 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
repos:
- repo: https://github.com/PyCQA/autoflake
rev: v1.7.7
hooks:
- id: autoflake
args:
- --in-place
- --remove-duplicate-keys
- --remove-all-unused-imports
exclude: test/integration/(actual|expected|samples).*
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.6.1
hooks:
- id: ruff
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
language_version: python3
exclude: test/integration/(actual|expected|samples).*
- repo: https://github.com/codespell-project/codespell
rev: v2.2.2
hooks:
- id: codespell # See setup.cfg for args
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks:
- id: mypy
exclude: test/integration/(actual|expected|samples).*