-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.cfg
More file actions
17 lines (16 loc) · 755 Bytes
/
setup.cfg
File metadata and controls
17 lines (16 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[flake8]
max-line-length=88
extend-ignore=E203
[pydocstyle]
# D100 Missing docstring in public module
# D104 Missing docstring in public package
# D107 Missing docstring in __init__
# D203 1 blank line required before class docstring (found 0)
# D212: Multi-line docstring summary should start at the first line
# D213 Multi-line docstring summary should start at the second line
# D406 Section name should end with a newline ('Attributes', not 'Attributes:')
# D407 Missing dashed underline after section ('Attributes')
# D413 Missing blank line after last section ('Returns')
# D416 Section name should end with a semicolon ('Parameters:', not 'Parameters')
ignore = D100,D104,D107,D203,D205,D212,D213,D400,D401,D406,D407,D413,D415,D416
match = .*\.py