forked from oamg/leapp-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
59 lines (55 loc) · 1.31 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
[MESSAGES CONTROL]
disable=
# "F" Fatal errors that prevent further processing
import-error,
# "I" Informational noise
# "E" Error for important programming issues (likely bugs)
no-member,
no-name-in-module,
raising-bad-type,
# "W" Warnings for stylistic problems or minor programming issues
no-absolute-import,
arguments-differ,
cell-var-from-loop,
fixme,
lost-exception,
no-init,
pointless-string-statement,
protected-access,
redefined-outer-name,
relative-import,
undefined-loop-variable,
unsubscriptable-object,
unused-argument,
unused-import,
# "C" Coding convention violations
bad-continuation,
missing-docstring,
wrong-import-order,
# "R" Refactor recommendations
duplicate-code,
no-self-use,
too-few-public-methods,
too-many-branches,
too-many-locals,
too-many-statements,
# new for python3 version of pylint
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=119
[DESIGN]
max-args=11 # 2x + 1 from default
max-attributes=21 # 4x + 1 from default
[REPORTS]
msg-template='[{msg_id} {symbol}] {msg} File: {path}, line {line}, in {obj}'
[BASIC]
# In order to make a check more strict add proper regex http://pylint-messages.wikidot.com/messages:c0103
argument-rgx=.*
attr-rgx=.*
class-rgx=.*
const-rgx=.*
function-rgx=.*
method-rgx=.*
module-rgx=.*
variable-rgx=.*
inlinevar-rgx=.*