-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.pylintrc
61 lines (52 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
[MASTER]
# https://stackoverflow.com/a/66767754
init-hook='import sys; sys.path.append(".")'
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=100
[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=
disable=broad-except,
dangerous-default-value,
global-statement,
multiple-statements,
protected-access,
redefined-outer-name,
unused-argument,
unused-variable,
using-constant-test,
attribute-defined-outside-init,
bad-inline-option,
bare-except,
blacklisted-name,
consider-using-enumerate,
deprecated-pragma,
duplicate-code,
file-ignored,
global-variable-not-assigned,
invalid-name,
len-as-condition,
line-too-long,
locally-disabled,
missing-docstring,
no-member,
raw-checker-failed,
redefined-builtin,
suppressed-message,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-function-args,
too-many-instance-attributes,
too-many-locals,
too-many-statements,
useless-suppression,
wrong-import-order