-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
40 lines (40 loc) · 1.06 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
30
31
32
33
34
35
36
37
38
39
40
[MESSAGES CONTROL]
disable=import-error,
fixme,
no-self-use,
unused-argument,
duplicate-code,
too-many-arguments,
too-many-locals,
too-many-statements,
too-many-branches,
too-many-nested-blocks,
too-many-public-methods,
too-few-public-methods,
no-value-for-parameter,
line-too-long,
super-with-arguments,
broad-except,
no-member,
attribute-defined-outside-init,
relative-beyond-top-level,
wildcard-import,
too-many-return-statements,
unnecessary-pass,
singleton-comparison,
no-else-return,
invalid-name,
singleton-comparison,
redefined-builtin,
inconsistent-return-statements,
redefined-outer-name,
super-init-not-called,
no-else-raise,
binary-op-exception,
pointless-statement,
consider-using-enumerate,
global-statement,
consider-iterating-dictionary,
raise-missing-from,
[DESIGN]
max-attributes=12