-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
37 lines (37 loc) · 983 Bytes
/
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
[flake8]
docstring-convention = all
exclude =
.eggs,
.venv,
*.pyi,
build,
dist,
node_modules,
typings
extend-ignore =
# No blank lines allowed after function docstring
D203,
# Multi-line docstring summary should start at the second line
D213,
# Section underline is over-indented
D215,
# First word of the first line should be properly capitalized
D403,
# Section name should end with a newline
D406,
# Missing dashed underline after section
D407,
# Section underline should be in the line following the section’s name
D408,
# Section underline should match the length of its name
D409,
# First line should end with a period, question mark, or exclamation point
D415,
# whitespace before ':' - black compatible
E203,
# variable in class scope should not be mixedCase
N815,
# line break before operator
W503
ignore-decorators = overload
max-line-length = 98