-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
92 lines (67 loc) · 2.26 KB
/
.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[MAIN]
# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes
[MESSAGES CONTROL]
disable=
arguments-differ,
attribute-defined-outside-init,
broad-exception-caught,
consider-using-assignment-expr,
format,
invalid-name,
missing-docstring,
possibly-used-before-assignment,
protected-access,
redefined-builtin,
redefined-outer-name,
too-few-public-methods,
too-many-arguments,
too-many-function-args,
unexpected-keyword-arg,
unknown-option-value,
[BASIC]
# Naming style matching correct method names.
method-naming-style=snake_case
# Naming style matching correct class names.
class-naming-style=PascalCase
# Regular expression matching correct class names
class-rgx=[A-Z_][a-zA-Z0-9]+$
# Naming style matching correct module names.
module-naming-style=snake_case
# Naming style matching correct function names.
function-naming-style=snake_case
# Regular expression matching correct function names
function-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming style matching correct variable names.
variable-naming-style=snake_case
# Regular expression matching correct variable names
variable-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming style matching correct constant names.
const-naming-style=UPPER_CASE
# Regular expression matching correct constant names
const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
# Naming style matching correct attribute names.
attr-naming-style=snake_case
# Regular expression matching correct attribute names
attr-rgx=[a-z_][a-z0-9_]{2,}$
# Naming style matching correct argument names.
argument-naming-style=snake_case
# Regular expression matching correct argument names
argument-rgx=[a-z_][a-z0-9_]{2,30}$
# Naming style matching correct class attribute names.
class-attribute-naming-style=any
[FORMAT]
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string = ' '
# Number of spaces of indent required inside a hanging or continued line.
indent-after-paren = 4
# Maximum number of characters on a single line.
max-line-length = 80
msg-template = "{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}"
output-format = colorized
[REPORTS]
reports = no
[IMPORTS]
ignored-modules=