-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
49 lines (45 loc) · 1.06 KB
/
.pre-commit-config.yaml
File metadata and controls
49 lines (45 loc) · 1.06 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
fail_fast: false
exclude: ^.*\b(migrations)\b.*$
repos:
- 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.3.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/PyCQA/docformatter
rev: v1.7.7
hooks:
- id: docformatter
args: [
--in-place,
--blank,
]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.4.4
hooks:
- id: ruff
args: [
--config=pyproject.toml,
--line-length=120,
--fix,
]
exclude: .git|__pycache__
- id: ruff-format
args: [
--config=pyproject.toml,
]
exclude: .git|__pycache__