summaryrefslogtreecommitdiff
path: root/.pylintrc
blob: 8cb7a35fd28b20c27cdd26b28bbd6fc2baa57ac2 (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# vim: ft=dosini fileencoding=utf-8:

[MASTER]
ignore=ez_setup.py

[MESSAGES CONTROL]
disable=no-self-use,
        super-on-old-class,
        old-style-class,
        abstract-class-little-used,
        bad-builtin,
        star-args,
        fixme,
        global-statement,
        no-init,
        locally-disabled,
        too-many-ancestors,
        too-few-public-methods,
        too-many-public-methods,
        cyclic-import,
        bad-option-value,
        bad-continuation,
        too-many-instance-attributes,
        unnecessary-lambda,
        blacklisted-name,
        too-many-lines

[BASIC]
module-rgx=(__)?[a-z][a-z0-9_]*(__)?$
function-rgx=([a-z_][a-z0-9_]{2,30}|setUpModule|tearDownModule)$
const-rgx=[A-Za-z_][A-Za-z0-9_]{0,30}$
method-rgx=[a-z_][A-Za-z0-9_]{2,40}$
attr-rgx=[a-z_][a-z0-9_]{0,30}$
argument-rgx=[a-z_][a-z0-9_]{0,30}$
variable-rgx=[a-z_][a-z0-9_]{0,30}$
class-attribute-rgx=[A-Za-z_][A-Za-z0-9_]{1,30}$
inlinevar-rgx=[a-z_][a-z0-9_]*$

[FORMAT]
max-line-length=79
ignore-long-lines=<?https?://

[SIMILARITIES]
min-similarity-lines=8

[VARIABLES]
dummy-variables-rgx=_.*

[CLASSES]
defining-attr-methods=__init__,__new__,setUp

[DESIGN]
max-args=10

[TYPECHECK]
ignored-classes=WebElementWrapper,AnsiCodes,UnsetObject