Checkpoint commit (pylint support)
[vern.git] / vern.pylint
1 [MASTER]
2
3 # A comma-separated list of package or module names from where C extensions may
4 # be loaded. Extensions are loading into the active Python interpreter and may
5 # run arbitrary code.
6 extension-pkg-whitelist=
7
8 # Add files or directories to the blacklist. They should be base names, not
9 # paths.
10 ignore=CVS
11
12 # Add files or directories matching the regex patterns to the blacklist. The
13 # regex matches against base names, not paths.
14 ignore-patterns=
15
16 # Python code to execute, usually for sys.path manipulation such as
17 # pygtk.require().
18 #init-hook=
19
20 # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
21 # number of processors available to use.
22 jobs=1
23
24 # Control the amount of potential inferred values when inferring a single
25 # object. This can help the performance when dealing with large functions or
26 # complex, nested conditions.
27 limit-inference-results=100
28
29 # List of plugins (as comma separated values of python modules names) to load,
30 # usually to register additional checkers.
31 load-plugins=
32
33 # Pickle collected data for later comparisons.
34 persistent=yes
35
36 # Specify a configuration file.
37 #rcfile=
38
39 # When enabled, pylint would attempt to guess common misconfiguration and emit
40 # user-friendly hints instead of false-positive error messages.
41 suggestion-mode=yes
42
43 # Allow loading of arbitrary C extensions. Extensions are imported into the
44 # active Python interpreter and may run arbitrary code.
45 unsafe-load-any-extension=no
46
47
48 [MESSAGES CONTROL]
49
50 # Only show warnings with the listed confidence levels. Leave empty to show
51 # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED.
52 confidence=
53
54 # Disable the message, report, category or checker with the given id(s). You
55 # can either give multiple identifiers separated by comma (,) or put this
56 # option multiple times (only on the command line, not in the configuration
57 # file where it should appear only once). You can also use "--disable=all" to
58 # disable everything first and then reenable specific checks. For example, if
59 # you want to run only the similarities checker, you can use "--disable=all
60 # --enable=similarities". If you want to run only the classes checker, but have
61 # no Warning level messages displayed, use "--disable=all --enable=classes
62 # --disable=W".
63 disable=print-statement,
64 parameter-unpacking,
65 unpacking-in-except,
66 old-raise-syntax,
67 backtick,
68 long-suffix,
69 old-ne-operator,
70 old-octal-literal,
71 import-star-module-level,
72 non-ascii-bytes-literal,
73 raw-checker-failed,
74 bad-inline-option,
75 locally-disabled,
76 file-ignored,
77 suppressed-message,
78 useless-suppression,
79 deprecated-pragma,
80 use-symbolic-message-instead,
81 apply-builtin,
82 basestring-builtin,
83 buffer-builtin,
84 cmp-builtin,
85 coerce-builtin,
86 execfile-builtin,
87 file-builtin,
88 long-builtin,
89 raw_input-builtin,
90 reduce-builtin,
91 standarderror-builtin,
92 unicode-builtin,
93 xrange-builtin,
94 coerce-method,
95 delslice-method,
96 getslice-method,
97 setslice-method,
98 no-absolute-import,
99 old-division,
100 dict-iter-method,
101 dict-view-method,
102 next-method-called,
103 metaclass-assignment,
104 indexing-exception,
105 raising-string,
106 reload-builtin,
107 oct-method,
108 hex-method,
109 nonzero-method,
110 cmp-method,
111 input-builtin,
112 round-builtin,
113 intern-builtin,
114 unichr-builtin,
115 map-builtin-not-iterating,
116 zip-builtin-not-iterating,
117 range-builtin-not-iterating,
118 filter-builtin-not-iterating,
119 using-cmp-argument,
120 eq-without-hash,
121 div-method,
122 idiv-method,
123 rdiv-method,
124 exception-message-attribute,
125 invalid-str-codec,
126 sys-max-int,
127 bad-python3-import,
128 deprecated-string-function,
129 deprecated-str-translate-call,
130 deprecated-itertools-function,
131 deprecated-types-field,
132 next-method-defined,
133 dict-items-not-iterating,
134 dict-keys-not-iterating,
135 dict-values-not-iterating,
136 deprecated-operator-function,
137 deprecated-urllib-function,
138 xreadlines-attribute,
139 deprecated-sys-function,
140 exception-escape,
141 comprehension-escape,
142 # vern-specific
143 line-too-long,
144 missing-docstring,
145 fixme
146
147 # Enable the message, report, category or checker with the given id(s). You can
148 # either give multiple identifier separated by comma (,) or put this option
149 # multiple time (only on the command line, not in the configuration file where
150 # it should appear only once). See also the "--disable" option for examples.
151 enable=c-extension-no-member
152
153
154 [REPORTS]
155
156 # Python expression which should return a note less than 10 (10 is the highest
157 # note). You have access to the variables errors warning, statement which
158 # respectively contain the number of errors / warnings messages and the total
159 # number of statements analyzed. This is used by the global evaluation report
160 # (RP0004).
161 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
162
163 # Template used to display messages. This is a python new-style format string
164 # used to format the message information. See doc for all details.
165 #msg-template=
166
167 # Set the output format. Available formats are text, parseable, colorized, json
168 # and msvs (visual studio). You can also give a reporter class, e.g.
169 # mypackage.mymodule.MyReporterClass.
170 output-format=text
171
172 # Tells whether to display a full report or only the messages.
173 reports=no
174
175 # Activate the evaluation score.
176 score=yes
177
178
179 [REFACTORING]
180
181 # Maximum number of nested blocks for function / method body
182 max-nested-blocks=5
183
184 # Complete name of functions that never returns. When checking for
185 # inconsistent-return-statements if a never returning function is called then
186 # it will be considered as an explicit return statement and no message will be
187 # printed.
188 never-returning-functions=sys.exit
189
190
191 [BASIC]
192
193 # Naming style matching correct argument names.
194 argument-naming-style=snake_case
195
196 # Regular expression matching correct argument names. Overrides argument-
197 # naming-style.
198 #argument-rgx=
199
200 # Naming style matching correct attribute names.
201 attr-naming-style=snake_case
202
203 # Regular expression matching correct attribute names. Overrides attr-naming-
204 # style.
205 #attr-rgx=
206
207 # Bad variable names which should always be refused, separated by a comma.
208 bad-names=foo,
209 bar,
210 baz,
211 toto,
212 tutu,
213 tata
214
215 # Naming style matching correct class attribute names.
216 class-attribute-naming-style=any
217
218 # Regular expression matching correct class attribute names. Overrides class-
219 # attribute-naming-style.
220 #class-attribute-rgx=
221
222 # Naming style matching correct class names.
223 class-naming-style=PascalCase
224
225 # Regular expression matching correct class names. Overrides class-naming-
226 # style.
227 #class-rgx=
228
229 # Naming style matching correct constant names.
230 const-naming-style=UPPER_CASE
231
232 # Regular expression matching correct constant names. Overrides const-naming-
233 # style.
234 #const-rgx=
235
236 # Minimum line length for functions/classes that require docstrings, shorter
237 # ones are exempt.
238 docstring-min-length=-1
239
240 # Naming style matching correct function names.
241 function-naming-style=snake_case
242
243 # Regular expression matching correct function names. Overrides function-
244 # naming-style.
245 #function-rgx=
246
247 # Good variable names which should always be accepted, separated by a comma.
248 good-names=i,
249 j,
250 k,
251 ex,
252 Run,
253 _
254
255 # Include a hint for the correct naming format with invalid-name.
256 include-naming-hint=no
257
258 # Naming style matching correct inline iteration names.
259 inlinevar-naming-style=any
260
261 # Regular expression matching correct inline iteration names. Overrides
262 # inlinevar-naming-style.
263 #inlinevar-rgx=
264
265 # Naming style matching correct method names.
266 method-naming-style=snake_case
267
268 # Regular expression matching correct method names. Overrides method-naming-
269 # style.
270 #method-rgx=
271
272 # Naming style matching correct module names.
273 module-naming-style=snake_case
274
275 # Regular expression matching correct module names. Overrides module-naming-
276 # style.
277 #module-rgx=
278
279 # Colon-delimited sets of names that determine each other's naming style when
280 # the name regexes allow several styles.
281 name-group=
282
283 # Regular expression which should only match function or class names that do
284 # not require a docstring.
285 no-docstring-rgx=^_
286
287 # List of decorators that produce properties, such as abc.abstractproperty. Add
288 # to this list to register other decorators that produce valid properties.
289 # These decorators are taken in consideration only for invalid-name.
290 property-classes=abc.abstractproperty
291
292 # Naming style matching correct variable names.
293 variable-naming-style=snake_case
294
295 # Regular expression matching correct variable names. Overrides variable-
296 # naming-style.
297 #variable-rgx=
298
299
300 [SPELLING]
301
302 # Limits count of emitted suggestions for spelling mistakes.
303 max-spelling-suggestions=4
304
305 # Spelling dictionary name. Available dictionaries: none. To make it working
306 # install python-enchant package..
307 spelling-dict=
308
309 # List of comma separated words that should not be checked.
310 spelling-ignore-words=
311
312 # A path to a file that contains private dictionary; one word per line.
313 spelling-private-dict-file=
314
315 # Tells whether to store unknown words to indicated private dictionary in
316 # --spelling-private-dict-file option instead of raising a message.
317 spelling-store-unknown-words=no
318
319
320 [STRING]
321
322 # This flag controls whether the implicit-str-concat-in-sequence should
323 # generate a warning on implicit string concatenation in sequences defined over
324 # several lines.
325 check-str-concat-over-line-jumps=no
326
327
328 [FORMAT]
329
330 # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
331 expected-line-ending-format=
332
333 # Regexp for a line that is allowed to be longer than the limit.
334 ignore-long-lines=^\s*(# )?<?https?://\S+>?$
335
336 # Number of spaces of indent required inside a hanging or continued line.
337 indent-after-paren=4
338
339 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
340 # tab).
341 indent-string=' '
342
343 # Maximum number of characters on a single line.
344 max-line-length=100
345
346 # Maximum number of lines in a module.
347 max-module-lines=1000
348
349 # List of optional constructs for which whitespace checking is disabled. `dict-
350 # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
351 # `trailing-comma` allows a space between comma and closing bracket: (a, ).
352 # `empty-line` allows space-only lines.
353 no-space-check=trailing-comma,
354 dict-separator
355
356 # Allow the body of a class to be on the same line as the declaration if body
357 # contains single statement.
358 single-line-class-stmt=no
359
360 # Allow the body of an if to be on the same line as the test if there is no
361 # else.
362 single-line-if-stmt=no
363
364
365 [TYPECHECK]
366
367 # List of decorators that produce context managers, such as
368 # contextlib.contextmanager. Add to this list to register other decorators that
369 # produce valid context managers.
370 contextmanager-decorators=contextlib.contextmanager
371
372 # List of members which are set dynamically and missed by pylint inference
373 # system, and so shouldn't trigger E1101 when accessed. Python regular
374 # expressions are accepted.
375 generated-members=
376
377 # Tells whether missing members accessed in mixin class should be ignored. A
378 # mixin class is detected if its name ends with "mixin" (case insensitive).
379 ignore-mixin-members=yes
380
381 # Tells whether to warn about missing members when the owner of the attribute
382 # is inferred to be None.
383 ignore-none=yes
384
385 # This flag controls whether pylint should warn about no-member and similar
386 # checks whenever an opaque object is returned when inferring. The inference
387 # can return multiple potential results while evaluating a Python object, but
388 # some branches might not be evaluated, which results in partial inference. In
389 # that case, it might be useful to still emit no-member and other checks for
390 # the rest of the inferred objects.
391 ignore-on-opaque-inference=yes
392
393 # List of class names for which member attributes should not be checked (useful
394 # for classes with dynamically set attributes). This supports the use of
395 # qualified names.
396 ignored-classes=optparse.Values,thread._local,_thread._local
397
398 # List of module names for which member attributes should not be checked
399 # (useful for modules/projects where namespaces are manipulated during runtime
400 # and thus existing member attributes cannot be deduced by static analysis. It
401 # supports qualified module names, as well as Unix pattern matching.
402 ignored-modules=
403
404 # Show a hint with possible names when a member name was not found. The aspect
405 # of finding the hint is based on edit distance.
406 missing-member-hint=yes
407
408 # The minimum edit distance a name should have in order to be considered a
409 # similar match for a missing member name.
410 missing-member-hint-distance=1
411
412 # The total number of similar names that should be taken in consideration when
413 # showing a hint for a missing member.
414 missing-member-max-choices=1
415
416
417 [VARIABLES]
418
419 # List of additional names supposed to be defined in builtins. Remember that
420 # you should avoid defining new builtins when possible.
421 additional-builtins=
422
423 # Tells whether unused global variables should be treated as a violation.
424 allow-global-unused-variables=yes
425
426 # List of strings which can identify a callback function by name. A callback
427 # name must start or end with one of those strings.
428 callbacks=cb_,
429 _cb
430
431 # A regular expression matching the name of dummy variables (i.e. expected to
432 # not be used).
433 dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_
434
435 # Argument names that match this expression will be ignored. Default to name
436 # with leading underscore.
437 ignored-argument-names=_.*|^ignored_|^unused_
438
439 # Tells whether we should check for unused import in __init__ files.
440 init-import=no
441
442 # List of qualified module names which can have objects that can redefine
443 # builtins.
444 redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io
445
446
447 [MISCELLANEOUS]
448
449 # List of note tags to take in consideration, separated by a comma.
450 notes=FIXME,
451 XXX,
452 TODO
453
454
455 [LOGGING]
456
457 # Format style used to check logging format string. `old` means using %
458 # formatting, while `new` is for `{}` formatting.
459 logging-format-style=old
460
461 # Logging modules to check that the string format arguments are in logging
462 # function parameter format.
463 logging-modules=logging
464
465
466 [SIMILARITIES]
467
468 # Ignore comments when computing similarities.
469 ignore-comments=yes
470
471 # Ignore docstrings when computing similarities.
472 ignore-docstrings=yes
473
474 # Ignore imports when computing similarities.
475 ignore-imports=no
476
477 # Minimum lines number of a similarity.
478 min-similarity-lines=4
479
480
481 [IMPORTS]
482
483 # Allow wildcard imports from modules that define __all__.
484 allow-wildcard-with-all=no
485
486 # Analyse import fallback blocks. This can be used to support both Python 2 and
487 # 3 compatible code, which means that the block might have code that exists
488 # only in one or another interpreter, leading to false positives when analysed.
489 analyse-fallback-blocks=no
490
491 # Deprecated modules which should not be used, separated by a comma.
492 deprecated-modules=optparse,tkinter.tix
493
494 # Create a graph of external dependencies in the given file (report RP0402 must
495 # not be disabled).
496 ext-import-graph=
497
498 # Create a graph of every (i.e. internal and external) dependencies in the
499 # given file (report RP0402 must not be disabled).
500 import-graph=
501
502 # Create a graph of internal dependencies in the given file (report RP0402 must
503 # not be disabled).
504 int-import-graph=
505
506 # Force import order to recognize a module as part of the standard
507 # compatibility libraries.
508 known-standard-library=
509
510 # Force import order to recognize a module as part of a third party library.
511 known-third-party=enchant
512
513
514 [CLASSES]
515
516 # List of method names used to declare (i.e. assign) instance attributes.
517 defining-attr-methods=__init__,
518 __new__,
519 setUp
520
521 # List of member names, which should be excluded from the protected access
522 # warning.
523 exclude-protected=_asdict,
524 _fields,
525 _replace,
526 _source,
527 _make
528
529 # List of valid names for the first argument in a class method.
530 valid-classmethod-first-arg=cls
531
532 # List of valid names for the first argument in a metaclass class method.
533 valid-metaclass-classmethod-first-arg=cls
534
535
536 [DESIGN]
537
538 # Maximum number of arguments for function / method.
539 max-args=5
540
541 # Maximum number of attributes for a class (see R0902).
542 max-attributes=7
543
544 # Maximum number of boolean expressions in an if statement.
545 max-bool-expr=5
546
547 # Maximum number of branch for function / method body.
548 max-branches=12
549
550 # Maximum number of locals for function / method body.
551 max-locals=15
552
553 # Maximum number of parents for a class (see R0901).
554 max-parents=7
555
556 # Maximum number of public methods for a class (see R0904).
557 max-public-methods=20
558
559 # Maximum number of return / yield for function / method body.
560 max-returns=6
561
562 # Maximum number of statements in function / method body.
563 max-statements=50
564
565 # Minimum number of public methods for a class (see R0903).
566 min-public-methods=2
567
568
569 [EXCEPTIONS]
570
571 # Exceptions that will emit a warning when being caught. Defaults to
572 # "BaseException, Exception".
573 overgeneral-exceptions=BaseException,
574 Exception