-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
39 lines (29 loc) · 789 Bytes
/
.pylintrc
File metadata and controls
39 lines (29 loc) · 789 Bytes
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
# This is the Pylint configuration file.
# [version = 1.6.4]
[FORMAT]
# C0321: for multiple statements on a single line
disable=C0321
max-line-length = 79
max-module-lines = 299
docstring-min-length = 3
bad-names = foo,bar,baz,qux,quux
good-names = _
no-docstring-rgx = wrapper
expected-line-ending-format = LF
const-rgx = [A-Z_]{3,20}$|(__[a-z]{5,10}__)
inlinevar-rgx = [a-z_]{3,10}$
argument-rgx = [a-z_]{3,10}$
variable-rgx = [a-z_]{3,20}$
function-rgx = [a-z_]{5,20}$
module-rgx = [a-z_]{5,15}$
dummy-variables-rgx = _
include-naming-hint = no
[DESIGN]
max-args = 5
max-bool-expr = 3
max-branches = 5
max-locals = 10
max-statements = 25
max-returns = 3
[MISCELLĀNEA]
notes=IDEA,FIXME,REVIEW,TODO