-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylint.rc
42 lines (36 loc) · 951 Bytes
/
.pylint.rc
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
40
41
42
[MASTER]
jobs=0
suggestion-mode=yes
persistent=no
[MESSAGES CONTROL]
disable=useless-object-inheritance,
useless-super-delegation,
too-few-public-methods,
len-as-condition,
too-many-return-statements,
too-many-arguments,
too-many-instance-attributes,
too-many-branches,
super-with-arguments,
raise-missing-from,
no-else-return
[REPORTS]
output-format=colorized
[BASIC]
argument-naming-style=camelCase
attr-naming-style=camelCase
class-attribute-naming-style=any
class-naming-style=PascalCase
const-naming-style=UPPER_CASE
function-naming-style=camelCase
inlinevar-naming-style=camelCase
method-naming-style=any
module-naming-style=any
variable-naming-style=camelCase
[TYPECHECK]
ignored-classes=twisted.internet.reactor
[DESIGN]
# Maximum number of locals for function / method body.
max-locals=20
# Maximum number of parents for a class (see R0901).
max-parents=8