-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pre-commit-config.yaml
102 lines (91 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# .pre-commit-config.yaml
repos:
# isort
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
exclude: ^jupyter-book/
args:
- --line-length=88
- -mVERTICAL_HANGING_INDENT
- -tc
- id: isort
name: isort (cython)
types: [cython]
- id: isort
name: isort (pyi)
types: [pyi]
# black
- repo: https://github.com/ambv/black
rev: 23.1.0
hooks:
- id: black
exclude: ^jupyter-book/
args: # arguments to configure black
- --line-length=88
- --include='\.pyi?$'
# these folders won't be formatted by black
- --exclude="""\.git |
\.__pycache__|
\.hg|
\.mypy_cache|
\.tox|
\.venv|
_build|
buck-out|
build|
dist"""
language_version: python3.10
# flake8
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
exclude: jupyter-book/
args: # arguments to configure flake8
# making isort line length compatible with black
- "--max-line-length=88"
- "--max-complexity=18"
- "--select=B,C,E,F,W,T4,B9"
# these are errors that will be ignored by flake8
# check out their meaning here
# https://flake8.pycqa.org/en/latest/user/error-codes.html
- "--ignore=E203,E266,E501,W503,F403,F401,E402,W605"
# mypy
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.3.0' # Use the sha / tag you want to point at
hooks:
- id: mypy
exclude: 'jupyter-book/.*|tests/.*'
args: [--config=mypy.ini]
additional_dependencies: [ pandas-stubs, openai-pygenerator ]
# mypy for tests
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.3.0' # Use the sha / tag you want to point at
hooks:
- id: mypy
name: mypy-tests
files: ^tests/
args: [--config=mypy-tests.ini]
additional_dependencies: [ pandas-stubs, openai-pygenerator ]
# pylint
- repo: local
hooks:
- id: pylint
exclude: jupyter-book/
name: pylint
entry: pylint
language: system
types: [python]
args:
[
"-rn", # Only display messages
"-sn", # Don't display the score
"--rcfile=.pylintrc",
]
#- repo: https://github.com/terrencepreilly/darglint
# rev: v1.8.0
# hooks:
# - id: darglint