fix building of forked upstream packages
[ta/rpmbuilder.git] / .pylintrc
1 [MASTER]
2
3 # Specify a configuration file.
4 #rcfile=
5
6 # Python code to execute, usually for sys.path manipulation such as
7 # pygtk.require().
8 #init-hook=
9
10 # Add files or directories to the blacklist. They should be base names, not
11 # paths.
12 ignore=CVS
13
14 # Pickle collected data for later comparisons.
15 persistent=yes
16
17 # List of plugins (as comma separated values of python modules names) to load,
18 # usually to register additional checkers.
19 load-plugins=
20
21 # Use multiple processes to speed up Pylint.
22 jobs=1
23
24 # Allow loading of arbitrary C extensions. Extensions are imported into the
25 # active Python interpreter and may run arbitrary code.
26 unsafe-load-any-extension=no
27
28 # A comma-separated list of package or module names from where C extensions may
29 # be loaded. Extensions are loading into the active Python interpreter and may
30 # run arbitrary code
31 extension-pkg-whitelist=
32
33 # Allow optimization of some AST trees. This will activate a peephole AST
34 # optimizer, which will apply various small optimizations. For instance, it can
35 # be used to obtain the result of joining multiple strings with the addition
36 # operator. Joining a lot of strings can lead to a maximum recursion error in
37 # Pylint and this flag can prevent that. It has one side effect, the resulting
38 # AST will be different than the one from reality.
39 optimize-ast=no
40
41
42 [MESSAGES CONTROL]
43
44 # Only show warnings with the listed confidence levels. Leave empty to show
45 # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
46 confidence=
47
48 # Enable the message, report, category or checker with the given id(s). You can
49 # either give multiple identifier separated by comma (,) or put this option
50 # multiple time. See also the "--disable" option for examples.
51 #enable=
52
53 # Disable the message, report, category or checker with the given id(s). You
54 # can either give multiple identifiers separated by comma (,) or put this
55 # option multiple times (only on the command line, not in the configuration
56 # file where it should appear only once).You can also use "--disable=all" to
57 # disable everything first and then reenable specific checks. For example, if
58 # you want to run only the similarities checker, you can use "--disable=all
59 # --enable=similarities". If you want to run only the classes checker, but have
60 # no Warning level messages displayed, use"--disable=all --enable=classes
61 # --disable=W"
62 disable=import-star-module-level,old-octal-literal,oct-method,print-statement,unpacking-in-except,parameter-unpacking,backtick,old-raise-syntax,old-ne-operator,long-suffix,dict-view-method,dict-iter-method,metaclass-assignment,next-method-called,raising-string,indexing-exception,raw_input-builtin,long-builtin,file-builtin,execfile-builtin,coerce-builtin,cmp-builtin,buffer-builtin,basestring-builtin,apply-builtin,filter-builtin-not-iterating,using-cmp-argument,useless-suppression,range-builtin-not-iterating,suppressed-message,no-absolute-import,old-division,cmp-method,reload-builtin,zip-builtin-not-iterating,intern-builtin,unichr-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,input-builtin,round-builtin,hex-method,nonzero-method,map-builtin-not-iterating,max-line-length,missing-docstring,logging-too-many-args,import-error, line-too-long,no-name-in-module
63
64
65 [REPORTS]
66
67 # Set the output format. Available formats are text, parseable, colorized, msvs
68 # (visual studio) and html. You can also give a reporter class, eg
69 # mypackage.mymodule.MyReporterClass.
70 output-format=text
71
72 # Put messages in a separate file for each module / package specified on the
73 # command line instead of printing them on stdout. Reports (if any) will be
74 # written in a file name "pylint_global.[txt|html]".
75 files-output=no
76
77 # Tells whether to display a full report or only the messages
78 reports=yes
79
80 # Python expression which should return a note less than 10 (10 is the highest
81 # note). You have access to the variables errors warning, statement which
82 # respectively contain the number of errors / warnings messages and the total
83 # number of statements analyzed. This is used by the global evaluation report
84 # (RP0004).
85 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
86
87 # Template used to display messages. This is a python new-style format string
88 # used to format the message information. See doc for all details
89 #msg-template=
90
91
92 [LOGGING]
93
94 # Logging modules to check that the string format arguments are in logging
95 # function parameter format
96 logging-modules=logging
97
98
99 [BASIC]
100
101 # List of builtins function names that should not be used, separated by a comma
102 bad-functions=map,filter,input
103
104 # Good variable names which should always be accepted, separated by a comma
105 good-names=i,j,k,ex,Run,_
106
107 # Bad variable names which should always be refused, separated by a comma
108 bad-names=foo,bar,baz,toto,tutu,tata
109
110 # Colon-delimited sets of names that determine each other's naming style when
111 # the name regexes allow several styles.
112 name-group=
113
114 # Include a hint for the correct naming format with invalid-name
115 include-naming-hint=no
116
117 # Regular expression matching correct function names
118 function-rgx=[a-z_][a-z0-9_]{2,30}$
119
120 # Naming hint for function names
121 function-name-hint=[a-z_][a-z0-9_]{2,30}$
122
123 # Regular expression matching correct variable names
124 variable-rgx=[a-z_][a-z0-9_]{2,30}$
125
126 # Naming hint for variable names
127 variable-name-hint=[a-z_][a-z0-9_]{2,30}$
128
129 # Regular expression matching correct constant names
130 const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
131
132 # Naming hint for constant names
133 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$
134
135 # Regular expression matching correct attribute names
136 attr-rgx=[a-z_][a-z0-9_]{2,30}$
137
138 # Naming hint for attribute names
139 attr-name-hint=[a-z_][a-z0-9_]{2,30}$
140
141 # Regular expression matching correct argument names
142 argument-rgx=[a-z_][a-z0-9_]{2,30}$
143
144 # Naming hint for argument names
145 argument-name-hint=[a-z_][a-z0-9_]{2,30}$
146
147 # Regular expression matching correct class attribute names
148 class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
149
150 # Naming hint for class attribute names
151 class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
152
153 # Regular expression matching correct inline iteration names
154 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
155
156 # Naming hint for inline iteration names
157 inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$
158
159 # Regular expression matching correct class names
160 class-rgx=[A-Z_][a-zA-Z0-9]+$
161
162 # Naming hint for class names
163 class-name-hint=[A-Z_][a-zA-Z0-9]+$
164
165 # Regular expression matching correct module names
166 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
167
168 # Naming hint for module names
169 module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
170
171 # Regular expression matching correct method names
172 method-rgx=[a-z_][a-z0-9_]{2,30}$
173
174 # Naming hint for method names
175 method-name-hint=[a-z_][a-z0-9_]{2,30}$
176
177 # Regular expression which should only match function or class names that do
178 # not require a docstring.
179 no-docstring-rgx=^_
180
181 # Minimum line length for functions/classes that require docstrings, shorter
182 # ones are exempt.
183 docstring-min-length=-1
184
185
186 [ELIF]
187
188 # Maximum number of nested blocks for function / method body
189 max-nested-blocks=5
190
191
192 [FORMAT]
193
194 # Maximum number of characters on a single line.
195 max-line-length=100
196
197 # Regexp for a line that is allowed to be longer than the limit.
198 ignore-long-lines=^\s*(# )?<?https?://\S+>?$
199
200 # Allow the body of an if to be on the same line as the test if there is no
201 # else.
202 single-line-if-stmt=no
203
204 # List of optional constructs for which whitespace checking is disabled. `dict-
205 # separator` is used to allow tabulation in dicts, etc.: {1  : 1,\n222: 2}.
206 # `trailing-comma` allows a space between comma and closing bracket: (a, ).
207 # `empty-line` allows space-only lines.
208 no-space-check=trailing-comma,dict-separator
209
210 # Maximum number of lines in a module
211 max-module-lines=1000
212
213 # String used as indentation unit. This is usually "    " (4 spaces) or "\t" (1
214 # tab).
215 indent-string='    '
216
217 # Number of spaces of indent required inside a hanging  or continued line.
218 indent-after-paren=4
219
220 # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
221 expected-line-ending-format=
222
223
224 [SIMILARITIES]
225
226 # Minimum lines number of a similarity.
227 min-similarity-lines=4
228
229 # Ignore comments when computing similarities.
230 ignore-comments=yes
231
232 # Ignore docstrings when computing similarities.
233 ignore-docstrings=yes
234
235 # Ignore imports when computing similarities.
236 ignore-imports=no
237
238
239 [VARIABLES]
240
241 # Tells whether we should check for unused import in __init__ files.
242 init-import=no
243
244 # A regular expression matching the name of dummy variables (i.e. expectedly
245 # not used).
246 dummy-variables-rgx=_$|dummy
247
248 # List of additional names supposed to be defined in builtins. Remember that
249 # you should avoid to define new builtins when possible.
250 additional-builtins=
251
252 # List of strings which can identify a callback function by name. A callback
253 # name must start or end with one of those strings.
254 callbacks=cb_,_cb
255
256
257 [SPELLING]
258
259 # Spelling dictionary name. Available dictionaries: none. To make it working
260 # install python-enchant package.
261 spelling-dict=
262
263 # List of comma separated words that should not be checked.
264 spelling-ignore-words=
265
266 # A path to a file that contains private dictionary; one word per line.
267 spelling-private-dict-file=
268
269 # Tells whether to store unknown words to indicated private dictionary in
270 # --spelling-private-dict-file option instead of raising a message.
271 spelling-store-unknown-words=no
272
273
274 [MISCELLANEOUS]
275
276 # List of note tags to take in consideration, separated by a comma.
277 notes=FIXME,XXX,TODO
278
279
280 [TYPECHECK]
281
282 # Tells whether missing members accessed in mixin class should be ignored. A
283 # mixin class is detected if its name ends with "mixin" (case insensitive).
284 ignore-mixin-members=yes
285
286 # List of module names for which member attributes should not be checked
287 # (useful for modules/projects where namespaces are manipulated during runtime
288 # and thus existing member attributes cannot be deduced by static analysis. It
289 # supports qualified module names, as well as Unix pattern matching.
290 ignored-modules=
291
292 # List of classes names for which member attributes should not be checked
293 # (useful for classes with attributes dynamically set). This supports can work
294 # with qualified names.
295 ignored-classes=
296
297 # List of members which are set dynamically and missed by pylint inference
298 # system, and so shouldn't trigger E1101 when accessed. Python regular
299 # expressions are accepted.
300 generated-members=
301
302
303 [IMPORTS]
304
305 # Deprecated modules which should not be used, separated by a comma
306 deprecated-modules=regsub,TERMIOS,Bastion,rexec
307
308 # Create a graph of every (i.e. internal and external) dependencies in the
309 # given file (report RP0402 must not be disabled)
310 import-graph=
311
312 # Create a graph of external dependencies in the given file (report RP0402 must
313 # not be disabled)
314 ext-import-graph=
315
316 # Create a graph of internal dependencies in the given file (report RP0402 must
317 # not be disabled)
318 int-import-graph=
319
320
321 [CLASSES]
322
323 # List of method names used to declare (i.e. assign) instance attributes.
324 defining-attr-methods=__init__,__new__,setUp
325
326 # List of valid names for the first argument in a class method.
327 valid-classmethod-first-arg=cls
328
329 # List of valid names for the first argument in a metaclass class method.
330 valid-metaclass-classmethod-first-arg=mcs
331
332 # List of member names, which should be excluded from the protected access
333 # warning.
334 exclude-protected=_asdict,_fields,_replace,_source,_make
335
336
337 [DESIGN]
338
339 # Maximum number of arguments for function / method
340 max-args=5
341
342 # Argument names that match this expression will be ignored. Default to name
343 # with leading underscore
344 ignored-argument-names=_.*
345
346 # Maximum number of locals for function / method body
347 max-locals=15
348
349 # Maximum number of return / yield for function / method body
350 max-returns=6
351
352 # Maximum number of branch for function / method body
353 max-branches=12
354
355 # Maximum number of statements in function / method body
356 max-statements=50
357
358 # Maximum number of parents for a class (see R0901).
359 max-parents=7
360
361 # Maximum number of attributes for a class (see R0902).
362 max-attributes=7
363
364 # Minimum number of public methods for a class (see R0903).
365 min-public-methods=2
366
367 # Maximum number of public methods for a class (see R0904).
368 max-public-methods=20
369
370 # Maximum number of boolean expressions in a if statement
371 max-bool-expr=5
372
373
374 [EXCEPTIONS]
375
376 # Exceptions that will emit a warning when being caught. Defaults to
377 # "Exception"
378 overgeneral-exceptions=Exception