-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
19 lines (19 loc) · 772 Bytes
/
.pylintrc
File metadata and controls
19 lines (19 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[MESSAGES CONTROL]
disable =
E0401, # unable to import becaue pylint runs in a minimal env
C0301, # line too long is managed by black
C0103, # variable, method and class naming style enforcement
C0116, # some methods are just too simple to deserve a docstring
R0902, # too many instance attributes
R0903, # too few public methods
R0913, # too many arguments
R0914, # too many local variables
R1711, # useless return is okay
R1705, # unnecessary return is okay
W0212, # protected member access is okay
W0511, # fixmes okay
W0622, # redefining builtin is okay
R0801, # code-duplicity: could not be solved for solvers
C0302, # too-many-lines
W1203, # logging-fstring-interpolation
C0209, # logging-not-lazy