-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pre-commit-config.yaml
49 lines (43 loc) · 1.54 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0
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.6.4
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
- repo: https://github.com/asottile/blacken-docs
rev: v1.8.0
hooks:
- id: blacken-docs
additional_dependencies: [black==20.8b1]
- repo: https://gitlab.com/PyCQA/flake8
rev: 3.8.4
hooks:
- id: flake8
exclude: sycret/sycret/
- repo: https://github.com/PyCQA/bandit
rev: 1.7.0
hooks:
- id: bandit
args: ["--exclude", "test"]
- repo: https://github.com/myint/docformatter
rev: v1.3.1
hooks:
- id: docformatter
args: [--in-place]