summaryrefslogtreecommitdiff
path: root/pylint.conf
blob: cccf384c04281c0c6dd424825df049a46a8759d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[MASTER]
persistent=no

[MESSAGES CONTROL]
disable=
    arguments-differ,
    inconsistent-return-statements,
    invalid-name,
    missing-docstring,
    no-self-use,
    not-callable,
    redefined-outer-name,
    too-few-public-methods,
    too-many-arguments,
    too-many-public-methods,
    unused-argument,
    unused-variable

[REPORTS]
reports=no

[SIMILARITIES]
min-similarity-lines=999