forked from dynatrace-oss/dynatrace-azure-log-forwarder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylint.cfg
88 lines (63 loc) · 2.11 KB
/
pylint.cfg
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
[MASTER]
# Disable:
# - Docstring requirement - C0114,C0115,C0116
# - Import order - C0411
# - Too broad Exception clause - W0703
# - Unnecessary "else" after "return" - R1705
# - Missing newline at the end - C0305,C0304
disable=C0114,C0115,C0116,C0411,W0703,R1705,C0304,C0305
[FORMAT]
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=
# Number of spaces of indent required inside a hanging or continued line.
indent-after-paren=4
# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string=' '
# Maximum number of characters on a single line.
max-line-length=160
[BASIC]
# Naming style matching correct argument names.
argument-naming-style=snake_case
# Naming style matching correct attribute names.
attr-naming-style=snake_case
# Naming style matching correct class names.
class-naming-style=PascalCase
# Naming style matching correct constant names.
const-naming-style=any
# Naming style matching correct variable names.
variable-naming-style=snake_case
# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx=^_
good-names=e,
i,
j,
k,
ex,
Run,
_
[DESIGN]
# Maximum number of arguments for function / method.
max-args=5
# Maximum number of attributes for a class (see R0902).
max-attributes=10
# Maximum number of boolean expressions in an if statement (see R0916).
max-bool-expr=5
# Maximum number of branch for function / method body.
max-branches=12
# Maximum number of locals for function / method body.
max-locals=15
# Maximum number of parents for a class (see R0901).
max-parents=7
# Maximum number of public methods for a class (see R0904).
max-public-methods=20
# Maximum number of return / yield for function / method body.
max-returns=6
# Maximum number of statements in function / method body.
max-statements=50
# Minimum number of public methods for a class (see R0903).
min-public-methods=1
[REFACTORING]
# Maximum number of nested blocks for function / method body
max-nested-blocks=6