-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
48 lines (40 loc) · 1.24 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
41
42
43
44
45
46
47
48
[MESSAGES CONTROL]
disable=
# Reasons disabled:
# consider-using-f-string - str.format sometimes more readable
# cyclic-import - doesn't test if both import on load
# duplicate-code - unavoidable
# format - handled by black
# locally-disabled - it spams too much
# too-many-* - can harm readability
# too-few-* - can harm readability
bad-continuation,
bad-option-value,
consider-using-f-string,
cyclic-import,
duplicate-code,
format,
locally-disabled,
no-else-return,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
too-many-boolean-expressions
[REPORTS]
# Tells whether to display a full report or only the messages
reports=no
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=88
[TYPECHECK]
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus extisting member attributes cannot be deduced by static analysis
ignored-modules=pytest,socket,struct,select,xml.parsers.expat