summaryrefslogtreecommitdiff
path: root/pylint.conf
blob: 9c9cfa51a52497d679a37fc825a4aa1b71bf510b (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=
    invalid-name,
    missing-docstring,
    no-member,
    no-self-use,
    protected-access,
    redefined-variable-type,
    too-few-public-methods,
    too-many-public-methods,
    unidiomatic-typecheck,
    unused-argument,

[REPORTS]
reports=no

[SIMILARITIES]
min-similarity-lines=999