-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
57 lines (51 loc) · 1.26 KB
/
.pre-commit-config.yaml
File metadata and controls
57 lines (51 loc) · 1.26 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
fail_fast: false
exclude: ^.*\b(migrations)\b.*$
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.1
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
- id: add-trailing-comma
args: [--py36-plus]
- repo: https://github.com/myint/autoflake
rev: v2.2.1
hooks:
- id: autoflake
args: [
--in-place,
--remove-all-unused-imports,
--ignore-init-module-imports,
--remove-unused-variables,
]
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/myint/docformatter
rev: v1.7.5
hooks:
- id: docformatter
args: [
--in-place,
--blank,
]
- repo: https://github.com/pycqa/flake8
rev: 7.0.0
hooks:
- id: flake8
args: [
--config=.flake8,
--max-line-length=120,
]
exclude: .git|__pycache__
additional_dependencies:
- flake8-builtins>=1.5.3
- flake8-commas>=2.0.0
- flake8-debugger>=4.0.0
- flake8-comprehensions>=3.3.1
- flake8-eradicate>=1.0.0
- dlint>=0.11.0