summaryrefslogtreecommitdiff
path: root/.pylintrc
blob: db9ade98b59e0ead2fcb45f055465a49bb63aad5 (plain)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
[MASTER]

# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-whitelist=

# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=CVS,tests,test

# Add files or directories matching the regex patterns to the blacklist. The
# regex matches against base names, not paths.
ignore-patterns=

# Python code to execute, usually for sys.path manipulation such as
# pygtk.require().
#init-hook=

# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=1

# Control the amount of potential inferred values when inferring a single
# object. This can help the performance when dealing with large functions or
# complex, nested conditions.
limit-inference-results=100

# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
load-plugins=

# Pickle collected data for later comparisons.
persistent=yes

# Specify a configuration file.
#rcfile=

# When enabled, pylint would attempt to guess common misconfiguration and emit
# user-friendly hints instead of false-positive error messages.
suggestion-mode=yes

# Allow loading of arbitrary C extensions. Extensions are imported into the
# active Python interpreter and may run arbitrary code.
unsafe-load-any-extension=no


[MESSAGES CONTROL]

# Only show warnings with the listed confidence levels. Leave empty to show
# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED.
confidence=

# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
# option multiple times (only on the command line, not in the configuration
# file where it should appear only once). You can also use "--disable=all" to
# disable everything first and then reenable specific checks. For example, if
# you want to run only the similarities checker, you can use "--disable=all
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable=
# "F" Fatal errors that prevent further processing
 import-error,
# "I" Informational noise
 locally-disabled,
 c-extension-no-member,
# "E" Error for important programming issues (likely bugs)
 access-member-before-definition,
 bad-super-call,
 no-member,
 no-method-argument,
 no-name-in-module,
 no-self-argument,
 no-value-for-parameter,
 unsubscriptable-object,
 method-hidden,
 not-callable,
 keyword-arg-before-vararg,
 too-many-function-args,
 unsupported-assignment-operation,
 not-an-iterable,
 unsupported-membership-test,
 unsupported-assignment-operation,
 raising-bad-type,
 bad-option-value,
 unexpected-keyword-arg,
 assignment-from-none,
 assignment-from-no-return,
# "W" Warnings for stylistic problems or minor programming issues
 exec-used,
 pointless-statement,
 unnecessary-lambda,
 abstract-method,
 arguments-differ,
 attribute-defined-outside-init,
 bad-builtin,
 bad-indentation,
 broad-except,
 deprecated-lambda,
 expression-not-assigned,
 fixme,
 global-statement,
 global-variable-not-assigned,
 no-init,
 non-parent-init-called,
 protected-access,
 redefined-builtin,
 redefined-outer-name,
 reimported,
 signature-differs,
 star-args,
 super-init-not-called,
 unpacking-non-sequence,
 unused-argument,
 unused-import,
 undefined-loop-variable,
 bad-staticmethod-argument,
 deprecated-method,
 useless-else-on-loop,
 lost-exception,
 pointless-string-statement,
 useless-super-delegation,
 deprecated-method,
 dangerous-default-value,
 wildcard-import,
 bad-staticmethod-argument,
 eval-used,
 blacklisted-name,
 pointless-statement,
 try-except-raise,
# "C" Coding convention violations
 bad-continuation,
 invalid-name,
 missing-docstring,
 old-style-class,
 superfluous-parens,
 wrong-import-position,
 wrong-import-order,
 ungrouped-imports,
 unused-variable,
 len-as-condition,
 cell-var-from-loop,
 singleton-comparison,
 misplaced-comparison-constant,
 unidiomatic-typecheck,
 consider-using-enumerate,
 bad-whitespace,
 line-too-long,
 useless-super-delegation,
 pointless-string-statement,
 unsupported-membership-test,
 bad-classmethod-argument,
 bad-mcs-classmethod-argument,
# "R" Refactor recommendations
 abstract-class-little-used,
 abstract-class-not-used,
 duplicate-code,
 interface-not-implemented,
 no-self-use,
 too-few-public-methods,
 too-many-ancestors,
 too-many-arguments,
 too-many-branches,
 too-many-instance-attributes,
 too-many-lines,
 too-many-locals,
 too-many-public-methods,
 too-many-return-statements,
 too-many-statements,
 too-many-nested-blocks,
 no-else-return,
 inconsistent-return-statements,
 simplifiable-if-statement,
 too-many-boolean-expressions,
 cyclic-import,
 redefined-argument-from-local,
 consider-using-ternary,
 literal-comparison,
 too-many-boolean-expressions,
 useless-object-inheritance,
 trailing-comma-tuple,
 useless-object-inheritance,
 consider-using-set-comprehension,
 consider-using-in,
 useless-return,
 chained-comparison

[REPORTS]
# Tells whether to display a full report or only the messages.
reports=no

[BASIC]
# Variable names can be 1 to 31 characters long, with lowercase and underscores
variable-rgx=[a-z_][a-z0-9_]{0,30}$

# Argument names can be 2 to 31 characters long, with lowercase and underscores
argument-rgx=[a-z_][a-z0-9_]{1,30}$

# Method names should be at least 3 characters long
# and be lowercased with underscores
method-rgx=([a-z_][a-z0-9_]{2,}|setUp|tearDown)$

# Module names matching neutron-* are ok (files in bin/)
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(neutron-[a-z0-9_-]+))$

# Don't require docstrings on tests.
no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$

mixin-class-rgx=(^(ManageResource)$|.*[Mm]ixin)


[FORMAT]
# Maximum number of characters on a single line.
max-line-length=79


[VARIABLES]
# List of additional names supposed to be defined in builtins. Remember that
# you should avoid to define new builtins when possible.
additional-builtins=_

[TYPECHECK]
# List of module names for which member attributes should not be checked
ignored-modules=six.moves,_MovedItems,alembic.context,alembic.op,
                alembic.config,pyxcli,storpool,oslo_privsep.capabilities,nvmet
signature-mutators=unittest.mock.patch,unittest.mock.patch.object,sqlalchemy.util._preloaded.dependencies

# This is for cinder.objects.*, and requests.packages.*, but due to
# https://github.com/PyCQA/pylint/issues/2498
# it doesn't seem that generated-members can be specified correctly.
# Clean this up later when pylint works correctly.
generated-members=objects,requests