-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
21 lines (20 loc) · 821 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
# W291 trailing whitespace
# W292 no newline at end of file
# W293 blank line contains whitespace
# E203 whitespace before ':'
ignore = W291,W292,W293,E203
max-line-length = 100
max-complexity = 10
[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)
# 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,D213,D406,D407,D413,D416
match = .*\.py