forked from stapelberg/vmdb2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pylint.conf
39 lines (36 loc) · 791 Bytes
/
pylint.conf
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
31
32
33
34
35
36
37
38
39
[MASTER]
persistent=no
[MESSAGES CONTROL]
disable=
abstract-class-little-used,
abstract-class-not-used,
attribute-defined-outside-init,
cyclic-import,
fixme,
global-statement,
interface-not-implemented,
invalid-name,
locally-disabled,
missing-docstring,
no-member,
no-self-use,
protected-access,
redefined-builtin,
redefined-variable-type,
star-args,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-statements,
unidiomatic-typecheck,
unsubscriptable-object,
unsupported-membership-test,
unused-argument
[REPORTS]
reports=no
[SIMILARITIES]
min-similarity-lines=999