forked from quiltdata/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
50 lines (50 loc) · 1.34 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
[MESSAGES CONTROL]
disable=attribute-defined-outside-init,
bad-continuation,
broad-except,
consider-using-in,
consider-using-sys-exit,
cyclic-import,
duplicate-code,
expression-not-assigned,
fixme,
global-statement,
import-error,
import-outside-toplevel,
inconsistent-return-statements,
invalid-name,
invalid-sequence-index,
line-too-long,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
multiple-imports,
multiple-statements,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-member,
no-name-in-module,
no-self-argument,
no-self-use,
not-callable,
no-value-for-parameter,
pointless-statement,
protected-access,
redefined-argument-from-local,
redefined-builtin,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-function-args,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-statements,
unnecessary-pass,
unused-argument,
unused-variable,
wrong-import-order,
wrong-import-position,