This repository was archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
81 lines (54 loc) · 2.13 KB
/
Copy path.pylintrc
File metadata and controls
81 lines (54 loc) · 2.13 KB
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
[BASIC]
# PascalCase - [A-Z][a-zA-Z0-9]+
# camelCase - [a-z][a-zA-Z0-9]+
# Naming hint for argument names
argument-name-hint=[a-z][a-zA-Z0-9]+$
# Regular expression matching correct argument names
argument-rgx=[a-z][a-zA-Z0-9]+$
# Naming hint for attribute names
attr-name-hint=[A-Z_][a-zA-Z0-9_]+$
# Regular expression matching correct attribute names
attr-rgx=[a-z_][a-zA-Z0-9_]*$
# Naming hint for class attribute names
class-attribute-name-hint=[A-Z_][a-zA-Z0-9_]+$
# Regular expression matching correct class attribute names
class-attribute-rgx=[A-Z_][a-zA-Z0-9_]+$
# Naming hint for class names
class-name-hint=[A-Z][a-zA-Z0-9]+$
# Regular expression matching correct class names
class-rgx=[A-Z][a-zA-Z0-9]+$
# Naming hint for constant names
const-name-hint=[A-Z_][A-Z0-9_]+$
# Regular expression matching correct constant names
const-rgx=[A-Z_][A-Z0-9_]+$
# Naming hint for function names
function-name-hint=[a-z][a-zA-Z0-9]+$
# Regular expression matching correct function names
function-rgx=[a-z][a-zA-Z0-9]+$
# Naming hint for inline iteration names
inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
# Regular expression matching correct inline iteration names
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
# Naming hint for method names
method-name-hint=[a-z][a-zA-Z0-9]+$
# Regular expression matching correct method names
method-rgx=(__)?[a-z][a-zA-Z0-9]+(__)?$
# Naming hint for module names
module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
# Regular expression matching correct module names
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
# Naming hint for variable names
variable-name-hint=[a-z][a-zA-Z0-9]+$
# Regular expression matching correct variable names
variable-rgx=[a-z][a-zA-Z0-9]*$
[FORMAT]
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=LF
# Number of spaces of indent required inside a hanging or continued line.
indent-after-paren=1
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 tab).
indent-string="\t"
# Maximum number of characters on a single line.
max-line-length=80
# Maximum number of lines in a module
max-module-lines=80