-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
.pre-commit-config.yaml
71 lines (61 loc) · 2.01 KB
/
.pre-commit-config.yaml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files # Prevent giant files from being committed
- id: check-ast # Check whether the files parse as valid python
- id: check-json # Check json files for parseable syntax
- id: check-merge-conflict # Check for files that contain merge conflict strings
- id: check-toml # Checks toml files for parseable syntax
- id: debug-statements # Check for debugger imports and `breakpoint()` calls in python
- id: detect-private-key # Detect the presence of private keys
- id: name-tests-test # Verify that test files are named correctly
- id: pretty-format-json # Set a standard for formatting JSON files
args: ["--autofix", "--no-sort-keys"]
- id: requirements-txt-fixer # Sort entries in requirements.txt
- repo: https://github.com/PyCQA/isort
rev: 5.8.0
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: v1.10.0
hooks:
- id: blacken-docs
additional_dependencies: [black==20.8b1]
- repo: https://gitlab.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/PyCQA/bandit
rev: 1.7.0
hooks:
- id: bandit
args: ["--exclude", "tests"]
- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1 # pick a git hash / tag to point to
hooks:
- id: pydocstyle
args:
- --convention=google
exclude: ^tests/
- repo: https://github.com/terrencepreilly/darglint
rev: v1.8.0
hooks:
- id: darglint
args:
- -v 2
exclude: ^tests/
- repo: https://github.com/myint/autoflake
rev: v1.4
hooks:
- id: autoflake
args:
- --in-place
- --recursive
- --remove-all-unused-imports
- --ignore-init-module-imports
- --remove-unused-variables