-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
55 lines (44 loc) · 1.15 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
48
49
50
51
52
53
54
55
# pycodestyle
[pycodestyle]
ignore =
# E501: line too long (* > 79 characters
E501,
# W503: line break before binary operator
W503,
# W291: trailing whitespace
W291,
# E203: whitespace before ':'
E203,
# multiple statements on one line (def)
E704,
# pylint
[pylint.FORMAT]
max-line-length = 120
max-branches = 15
[pylint.'MESSAGES CONTROL']
disable =
# TODO: @mb-jp remove 'missing-class-docstring' 'missing-module-docstring' 'missing-function-docstring'
missing-class-docstring,
missing-module-docstring,
missing-function-docstring,
too-many-instance-attributes,
too-many-arguments,
too-many-positional-arguments,
too-many-locals,
too-few-public-methods,
too-many-public-methods,
duplicate-code,
protected-access,
# pylint and mypy do not agree, so signature-differs is mypy responsibility
signature-differs,
#nice when declaring abstract methods
multiple-statements,
# black will take care of this for us
line-too-long,
# TODO
W0511,
# TODO fix all error form this
W0719,
[metadata]
description_file=README.md
license_files=LICENSE