-
Notifications
You must be signed in to change notification settings - Fork 10
/
.pre-commit-config.yaml
37 lines (36 loc) · 1.08 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
exclude: ".git|.tox|docs|tox.ini"
default_stages: [commit]
fail_fast: true
repos:
- repo: https://github.com/econchick/interrogate
rev: 1.4.0
hooks:
- id: interrogate
name: Check for docstrings
args: [-vv, -i, --fail-under=50]
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.6.0
hooks:
- id: reorder-python-imports
name: Reorder Python imports
args: ["--application-directories=.:src:tests"]
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
args: [--line-length, "120"]
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear
- flake8-implicit-str-concat
args: ["--ignore=ISC003,W503", --max-line-length, "120", src]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: detect-private-key
- id: fix-byte-order-marker
- id: trailing-whitespace
- id: end-of-file-fixer