-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.pylintrc
31 lines (31 loc) · 809 Bytes
/
.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
[MESSAGES CONTROL]
disable=
# I know how to find these
fixme,
# This is not fixable
cyclic-import,
duplicate-code,
# The ones here fire too often
invalid-name,
redefined-outer-name,
# The ones below here fire on too many intentional cases
unused-argument,
unused-variable,
# The ones below here fire in error
global-variable-not-assigned,
unnecessary-lambda-assignment,
# The ones below here are always bad ideas
unspecified-encoding,
useless-return,
no-else-return,
no-else-continue,
line-too-long,
too-many-lines,
too-many-instance-attributes,
too-many-arguments,
too-many-public-methods,
too-many-branches,
too-many-statements,
too-many-locals,
too-many-return-statements,
global-statement