-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
44 lines (38 loc) · 961 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
[MASTER]
persistent=no
[MESSAGES CONTROL]
enable=all
disable=consider-using-f-string,
exec-used,
locally-disabled,
no-else-return,
suppressed-message,
too-many-arguments,
too-many-lines,
too-many-public-methods,
[BASIC]
module-rgx=^[a-z_][a-z0-9_]+$
function-rgx=^[a-z_][a-z0-9_]+$
method-rgx=^[a-z_][a-z0-9_]+$
class-rgx=^[A-Z_][a-zA-Z0-9]+$
variable-rgx=^[a-z_][a-z0-9_]*$
argument-rgx=^[a-z_][a-z0-9_]*$
attr-rgx=^[a-z_][a-z0-9_]*$
class-attribute-rgx=^[a-z_][a-z0-9_]*$
inlinevar-rgx=^[a-z_][a-z0-9_]*$
const-rgx=^(([A-Z_][A-Z0-9_]*)|(__[a-zA-Z0-9_]*__))$
class-const-rgx=^(([A-Z_][A-Z0-9_]*)|(__[a-zA-Z0-9_]*__))$
bad-names=l,O,I
[FORMAT]
max-line-length=78
expected-line-ending-format=LF
[STRING]
check-str-concat-over-line-jumps=yes
[VARIABLES]
dummy-variables-rgx=^_.*$
[SIMILARITIES]
min-similarity-lines=7
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
ignore-signatures=yes