summaryrefslogtreecommitdiff
path: root/.pylintrc
blob: b457544a6226dc0280574197fcdf523880e3ce16 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[MASTER]
jobs=0
load-plugins=
    pylint.extensions.bad_builtin,
    pylint.extensions.set_membership,

[REPORTS]
score=no

[MESSAGES CONTROL]
disable=
    abstract-method,
    arguments-differ,
    arguments-renamed,
    attribute-defined-outside-init,
    broad-except,
    cell-var-from-loop,
    consider-using-f-string,
    consider-using-with,
    cyclic-import,
    deprecated-decorator,
    duplicate-code,
    duplicate-value,
    exec-used,
    fixme,
    import-error,
    import-outside-toplevel,
    inconsistent-mro,
    inconsistent-return-statements,
    invalid-name,
    invalid-unary-operand-type,
    line-too-long,
    method-cache-max-size-none,
    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,
    non-parent-init-called,
    not-an-iterable,
    not-callable,
    pointless-string-statement,
    protected-access,
    raise-missing-from,
    redeclared-assigned-name,
    redefined-argument-from-local,
    redefined-builtin,
    redefined-outer-name,
    subprocess-run-check,
    super-init-not-called,
    too-few-public-methods,
    too-many-ancestors,
    too-many-arguments,
    too-many-boolean-expressions,
    too-many-branches,
    too-many-instance-attributes,
    too-many-lines,
    too-many-locals,
    too-many-nested-blocks,
    too-many-public-methods,
    too-many-return-statements,
    too-many-statements,
    typevar-name-incorrect-variance,
    undefined-loop-variable,
    unidiomatic-typecheck,
    unnecessary-dict-index-lookup,
    unnecessary-lambda-assignment,
    unsubscriptable-object,
    unused-argument,
    unused-variable,
    useless-super-delegation,
    wrong-import-order,
    wrong-import-position,