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
|
# See https://www.pylint.org/
[BASIC]
# Permit 2 character & long argument names, like db
argument-rgx=[a-z_][a-z0-9_]{1,50}$
# Long attribute names
attr-rgx=[a-z_][a-z0-9_]{2,50}$
# Long function names
function-rgx=[a-z_][a-z0-9_]{2,50}$
# Long method names
method-rgx=[a-z_][a-z0-9_]{2,50}$
# Permit 2 character & long variable names, like sb
variable-rgx=[a-z_][a-z0-9_]{1,50}$
[MESSAGES CONTROL]
# C0301 - line-too-long - some of the type annotations are longer then 100 columns
# C0330 - bad-continuation - ignore conflicts produced by yapf formatting
# E0401 - import-error - ignore imports that fail to load
# E1101 - no-member - ignore maybe no member warnings
# I0011 - locally-disabled - ignore warnings about disable pylint checks
# R0204 - redefined-variable-type
# R0903 - too-few-public-methods - pylint does not always know best
# R1705 - no-else-return - sometimes an unnecessary else helps readability
# W0511 - fixme - ignore TODOs in comments
# W0611 - unused-import - typing module is needed for mypy
# R0205 - useless-object-inheritance - See PM-1380
# W0402 - deprecated-module - See PM-1380
# W1505 - deprecated-method - See PM-1380
# W0107 - unnecessary-pass - See PM-1380
# R1720 - no-else-raise - See PM-1380
# W0122 - exec-used - See PM-1380
# R0801 - duplicate-code - See PM-1380
# E0611 - no-name-in-module
disable=
bad-continuation,
bare-except,
broad-except,
consider-using-sys-exit,
deprecated-method,
deprecated-module,
duplicate-code,
exec-used,
fixme,
import-error,
import-outside-toplevel,
line-too-long,
locally-disabled,
missing-class-docstring,
missing-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-member,
no-name-in-module,
no-self-use,
raise-missing-from,
redefined-variable-type,
subprocess-run-check,
super-with-arguments,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-function-args,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
unidiomatic-typecheck,
unnecessary-comprehension,
unnecessary-pass,
unused-import,
unused-argument,
useless-object-inheritance,
wrong-import-order
enable=useless-suppression
[IMPORTS]
known-third-party=boto3,botocore,psutil,yaml,xmlrunner
|