-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
55 lines (42 loc) · 958 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[MASTER]
max-line-length=120
disable = line-too-long, C0301, W0511, W1203
[FORMAT]
indent-string=' '
[MESSAGES CONTROL]
enable = useless-suppression, use-symbolic-message-instead, useless-return, inconsistent-return-statements
[DESIGN]
max-args=5
max-statements=50
max-locals=15
[EXCEPTIONS]
overgeneral-exceptions=Exception
[CLASSES]
min-public-methods=2
max-public-methods=20
[REPORTS]
reports=no
score=no
[LOGGING]
logging-modules=logging
[TYPECHECK]
generated-members=objects
[SPELLING]
spelling-dict=
spelling-ignore-words=
spelling-private-dict-file=
spelling-store-unknown-words=no
[MISCELLANEOUS]
good-names=i, j, k, ex, Run, _
[VARIABLES]
variable-rgx=[a-z_][a-z0-9_]{2,30}$
argument-rgx=[a-z_][a-z0-9_]{2,30}$
attr-rgx=[a-z_][a-z0-9_]{2,30}$
[SIMILARITIES]
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
min-similarity-lines=4
[IMPORTS]
allow-wildcard-with-all=no
deprecated-modules=regsub,string,TERMIOS,Bastion,rexec