-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.pre-commit-config.yaml
77 lines (71 loc) · 1.75 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
72
73
74
75
76
repos:
- repo: local
hooks:
# - id: isort
# name: isort
# stages: [commit]
# language: system
# entry: isort
# types: [python]
# - id: black
# name: black
# stages: [commit]
# language: system
# entry: black
# types: [python]
- id: flake8
name: flake8
stages: [commit]
language: python
entry: flake8
types: [python]
exclude: setup.py
additional_dependencies: [
flake8-docstrings,
flake8-bugbear,
flake8-builtins,
flake8-comprehensions,
flake8-eradicate,
flake8-pytest-style,
flake8-broken-line,
flake8-print,
flake8-pie,
flake8-simplify,
flake8-useless-assert,
flake8-class-attributes-order,
flake8-literal,
flake8-return,
flake8-annotations-complexity,
flake8-cognitive-complexity,
flake8-expression-complexity,
flake8-functions,
flake8-length,
flake8-copyright,
flake8-comments,
flake8-fixme,
darglint
]
- id: mypy
name: mypy
stages: [commit]
language: system
entry: mypy .
types: [python]
pass_filenames: false
- id: pylint
name: pylint
stages: [commit]
language: system
entry: pylint
types: [python]
args:
[
"-rn", # Only display messages
"-sn", # Don't display the score
]
# - id: pytest
# name: pytest
# stages: [commit]
# language: system
# entry: pipenv run pytest
# types: [python]