-
-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
28 lines (28 loc) · 776 Bytes
/
.pre-commit-config.yaml
File metadata and controls
28 lines (28 loc) · 776 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
repos:
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
hooks:
- id: autoflake
args:
[
--in-place,
--remove-unused-variables,
--remove-all-unused-imports,
--expand-star-imports,
]
- repo: https://github.com/pycqa/isort
rev: 7.0.0
hooks:
- id: isort
args: ["--filter-files"]
- repo: https://github.com/psf/black
rev: 25.11.0
hooks:
- id: black
args: [--safe]
- repo: https://github.com/PyCQA/flake8
rev: 7.3.0
hooks:
- id: flake8
args: ["--config=.flake8"]
additional_dependencies: ['flake8-bugbear==23.9.16']