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

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

[REPORTS]
reports=no

[SIMILARITIES]
min-similarity-lines=999