-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
33 lines (33 loc) · 968 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
[pylint]
ignore=too-many-arguments,invalid-name,wrong-import-order
[pycodestyle]
ignore=E501
[pydocstyle]
ignore=D412,D101,D102,D103,D105,D107,D400,D209,D213,D212,D211,D205,D401,D413
[flake8]
max-line-length = 100
ignore =
# F812: list comprehension redefines ...
F812,
# H101: Use TODO(NAME)
H101,
# H202: assertRaises Exception too broad
H202,
# H233: Python 3.x incompatible use of print operator
H233,
# H301: one import per line
H301,
# H306: imports not in alphabetical order (time, os)
H306,
# H401: docstring should not start with a space
H401,
# H403: multi line docstrings should end on a new line
H403,
# H404: multi line docstring should start without a leading new line
H404,
# H405: multi line docstring summary not separated with an empty line
H405,
# H501: Do not use self.__dict__ for string formatting
H501
# W503: Line break before binary operator
W503