-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
33 lines (31 loc) · 1.08 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
[MESSAGES CONTROL]
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
#enable=
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable=logging-fstring-interpolation,
unnecessary-pass,
missing-module-docstring,
too-many-instance-attributes,
fixme,
invalid-name,
broad-except,
too-few-public-methods,
anomalous-backslash-in-string,
unnecessary-comprehension,
too-many-lines,
too-many-arguments,
too-many-branches,
singleton-comparison,
line-too-long,
too-many-statements,
too-many-locals,
unspecified-encoding,
too-many-return-statements,
unnecessary-lambda-assignment,
# Similar lines
R0801,