-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (45 loc) · 1.01 KB
/
setup.cfg
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
[mypy]
python_version = 3.12
plugins = pydantic.mypy
strict = True
[mypy-tests.*]
ignore_errors = True
[flake8]
max-line-length = 79
docstring-convention = numpy
max-complexity = 10
classmethod-decorators =
classmethod
validator
select =
# B are bugbear checks (including the optionals)
B
B9
# C are complexity checks
C
# D are docstring checks
D
E
F
I
N
W
ignore =
# D1 are public documentation checks
D1
# D400 First line should end with a period, see D205
D400
# D401 First line should be in imperative mood, lots of false positives
D401
# D202 No blank lines allowed after function docstring, conflicts with black
D202
# D205 1 blank line required between summary line and description
D205
# E203 is not PEP8 compliant (see black formatting)
E203
# E501 (line lengths) will be checked with B950 instead
E501
# W503 is not PEP8 compliant (see black formatting)
W503
# B907 don't care about quotes
B907