forked from aloetesting/aloe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pylintrc
36 lines (32 loc) · 813 Bytes
/
pylintrc
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
[MASTER]
[FORMAT]
max-line-length=120
[REPORTS]
output-format=colorized
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / 1000) * 10)
[MESSAGES CONTROL]
disable=
attribute-defined-outside-init,
duplicate-code,
fixme,
inconsistent-return-statements,
locally-disabled,
locally-enabled,
missing-super-argument,
no-else-return,
no-self-use,
too-few-public-methods,
too-many-lines,
useless-object-inheritance,
unnecessary-pass,
unused-argument,
wrong-import-order,
RP0101,
RP0401,
RP0402,
RP0701,
RP0801,
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,30}$|test_[a-zA-Z_][a-zA-Z0-9_]{2,100}$|setUp$|tearDown$
method-rgx=[a-z_][a-z0-9_]{2,30}$|test_[a-zA-Z_][a-zA-Z0-9_]{2,100}$
attr-rgx=[a-z_][a-z0-9_]{2,30}$|maxDiff$