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

[MESSAGES CONTROL]
disable=
    attribute-defined-outside-init,
    bad-builtin,
    blacklisted-name,
    cyclic-import,
    invalid-name,
    missing-docstring,
    no-member,
    no-self-use,
    pointless-statement,
    protected-access,
    star-args,
    too-few-public-methods,
    too-many-arguments,
    too-many-branches,
    too-many-instance-attributes,
    too-many-locals,
    too-many-public-methods,
    too-many-statements,
    unused-argument

[REPORTS]
reports=no

[SIMILARITIES]
min-similarity-lines=999