-
Notifications
You must be signed in to change notification settings - Fork 10
/
.pylintrc
29 lines (29 loc) · 1.04 KB
/
.pylintrc
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
[MESSAGES CONTROL]
disable=raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
#### Additions to defaults start here ####
# not everything needs docs
missing-docstring,
# we still support Python 2
useless-object-inheritance,
# conflicts with design of attrs-based classes
too-few-public-methods,
# attrs confuses pylint type inference
not-an-iterable,
# nothing wrong with having TODO or FIXME comments...
fixme,
# some classes have code accessing each other
protected-access,
# we use black code style and don't need additional checks
line-too-long,
# don't enforce use of f-strings
consider-using-f-string,
# don't enforce 'raise ... from ...'; not py2 compatible
raise-missing-from,
# don't enforce Python3 style super(); not py2 compatible
super-with-arguments