summaryrefslogtreecommitdiff
path: root/pylint.conf
blob: ed09e299ecf9d7d0352985ca05102b6fd3327747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[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-arguments,
    too-many-public-methods,
    unused-argument,
    unused-variable

[REPORTS]
reports=no

[SIMILARITIES]
min-similarity-lines=999