summaryrefslogtreecommitdiff
path: root/pylint.conf
blob: 146a84ee8de7e8b24723ed61d4d64405129e41be (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
[MASTER]
persistent=no

[MESSAGES CONTROL]
disable=
    abstract-class-little-used,
    abstract-class-not-used,
    attribute-defined-outside-init,
    cyclic-import,
    fixme,
    global-statement,
    interface-not-implemented,
    invalid-name,
    locally-disabled,
    missing-docstring,
    no-self-use,
    protected-access,
    redefined-variable-type,
    star-args,
    too-few-public-methods,
    too-many-arguments,
    too-many-branches,
    too-many-instance-attributes,
    too-many-lines,
    too-many-locals,
    too-many-public-methods,
    too-many-statements,
    unidiomatic-typecheck,
    unsubscriptable-object,
    unsupported-membership-test,
    unused-argument

[REPORTS]
reports=no

[SIMILARITIES]
min-similarity-lines=999