-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
44 lines (44 loc) · 1.04 KB
/
.pre-commit-config.yaml
File metadata and controls
44 lines (44 loc) · 1.04 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
fail_fast: true
repos:
- repo: local
hooks:
- id: system
name: pyupgrade
entry: poetry run -- tox r -e pyupgrade -- --exit-zero-even-if-changed
pass_filenames: false
language: system
- repo: local
hooks:
- id: system
name: isort
entry: poetry run -- tox r -e isort
pass_filenames: false
language: system
- repo: local
hooks:
- id: system
name: autopep8
entry: poetry run -- tox r -e autopep8
pass_filenames: false
language: system
- repo: local
hooks:
- id: system
name: flake8
entry: poetry run -- tox r -e flake8
pass_filenames: false
language: system
- repo: local
hooks:
- id: system
name: mypy
entry: poetry run -- tox -e mypy-current
pass_filenames: false
language: system
- repo: local
hooks:
- id: system
name: bandit
entry: poetry run -- tox r -e bandit
pass_filenames: false
language: system