@@ -7,15 +7,15 @@ analyse-fallback-blocks=no
7
7
8
8
# Load and enable all available extensions. Use --list-extensions to see a list
9
9
# all available extensions.
10
- enable-all-extensions =None
10
+ # enable-all-extensions=
11
11
12
12
# In error mode, checkers without error messages are disabled and for others,
13
13
# only the ERROR messages are displayed, and no reports are done by default.
14
- errors-only =None
14
+ # errors-only=
15
15
16
16
# Always return a 0 (non-error) status code, even if lint errors are found.
17
17
# This is primarily useful in continuous integration scripts.
18
- exit-zero =False
18
+ # exit-zero=
19
19
20
20
# A comma-separated list of package or module names from where C extensions may
21
21
# be loaded. Extensions are loading into the active Python interpreter and may
@@ -38,7 +38,7 @@ fail-under=10
38
38
39
39
# Interpret the stdin as a python script, whose filename needs to be passed as
40
40
# the module_or_package argument.
41
- from-stdin =False
41
+ # from-stdin=
42
42
43
43
# Files or directories to be skipped. They should be base names, not paths.
44
44
ignore =CVS
@@ -60,7 +60,7 @@ ignored-modules=
60
60
61
61
# Python code to execute, usually for sys.path manipulation such as
62
62
# pygtk.require().
63
- init-hook =None
63
+ # init-hook=
64
64
65
65
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
66
66
# number of processors available to use.
@@ -94,7 +94,7 @@ suggestion-mode=yes
94
94
unsafe-load-any-extension =no
95
95
96
96
# In verbose mode, extra non-checker-related info will be displayed.
97
- verbose =None
97
+ # verbose=
98
98
99
99
100
100
[REPORTS]
@@ -113,7 +113,7 @@ msg-template=
113
113
# Set the output format. Available formats are text, parseable, colorized, json
114
114
# and msvs (visual studio). You can also give a reporter class, e.g.
115
115
# mypackage.mymodule.MyReporterClass.
116
- output-format =None
116
+ # output-format=
117
117
118
118
# Tells whether to display a full report or only the messages.
119
119
reports =no
@@ -233,10 +233,6 @@ contextmanager-decorators=contextlib.contextmanager
233
233
# expressions are accepted.
234
234
generated-members =
235
235
236
- # Tells whether missing members accessed in mixin class should be ignored. A
237
- # class is considered mixin if its name matches the mixin-class-rgx option.
238
- ignore-mixin-members =yes
239
-
240
236
# Tells whether to warn about missing members when the owner of the attribute
241
237
# is inferred to be None.
242
238
ignore-none =yes
@@ -313,15 +309,15 @@ argument-naming-style=snake_case
313
309
# Regular expression matching correct argument names. Overrides argument-
314
310
# naming-style. If left empty, argument names will be checked with the set
315
311
# naming style.
316
- argument-rgx =None
312
+ # argument-rgx=
317
313
318
314
# Naming style matching correct attribute names.
319
315
attr-naming-style =snake_case
320
316
321
317
# Regular expression matching correct attribute names. Overrides attr-naming-
322
318
# style. If left empty, attribute names will be checked with the set naming
323
319
# style.
324
- attr-rgx =None
320
+ # attr-rgx=
325
321
326
322
# Bad variable names which should always be refused, separated by a comma.
327
323
bad-names =foo,
@@ -341,30 +337,30 @@ class-attribute-naming-style=any
341
337
# Regular expression matching correct class attribute names. Overrides class-
342
338
# attribute-naming-style. If left empty, class attribute names will be checked
343
339
# with the set naming style.
344
- class-attribute-rgx =None
340
+ # class-attribute-rgx=
345
341
346
342
# Naming style matching correct class constant names.
347
343
class-const-naming-style =UPPER_CASE
348
344
349
345
# Regular expression matching correct class constant names. Overrides class-
350
346
# const-naming-style. If left empty, class constant names will be checked with
351
347
# the set naming style.
352
- class-const-rgx =None
348
+ # class-const-rgx=
353
349
354
350
# Naming style matching correct class names.
355
351
class-naming-style =PascalCase
356
352
357
353
# Regular expression matching correct class names. Overrides class-naming-
358
354
# style. If left empty, class names will be checked with the set naming style.
359
- class-rgx =None
355
+ # class-rgx=
360
356
361
357
# Naming style matching correct constant names.
362
358
const-naming-style =UPPER_CASE
363
359
364
360
# Regular expression matching correct constant names. Overrides const-naming-
365
361
# style. If left empty, constant names will be checked with the set naming
366
362
# style.
367
- const-rgx =None
363
+ # const-rgx=
368
364
369
365
# Minimum line length for functions/classes that require docstrings, shorter
370
366
# ones are exempt.
@@ -376,7 +372,7 @@ function-naming-style=snake_case
376
372
# Regular expression matching correct function names. Overrides function-
377
373
# naming-style. If left empty, function names will be checked with the set
378
374
# naming style.
379
- function-rgx =None
375
+ # function-rgx=
380
376
381
377
# Good variable names which should always be accepted, separated by a comma.
382
378
good-names =i,
@@ -399,21 +395,21 @@ inlinevar-naming-style=any
399
395
# Regular expression matching correct inline iteration names. Overrides
400
396
# inlinevar-naming-style. If left empty, inline iteration names will be checked
401
397
# with the set naming style.
402
- inlinevar-rgx =None
398
+ # inlinevar-rgx=
403
399
404
400
# Naming style matching correct method names.
405
401
method-naming-style =snake_case
406
402
407
403
# Regular expression matching correct method names. Overrides method-naming-
408
404
# style. If left empty, method names will be checked with the set naming style.
409
- method-rgx =None
405
+ # method-rgx=
410
406
411
407
# Naming style matching correct module names.
412
408
module-naming-style =snake_case
413
409
414
410
# Regular expression matching correct module names. Overrides module-naming-
415
411
# style. If left empty, module names will be checked with the set naming style.
416
- module-rgx =None
412
+ # module-rgx=
417
413
418
414
# Colon-delimited sets of names that determine each other's naming style when
419
415
# the name regexes allow several styles.
@@ -430,15 +426,15 @@ property-classes=abc.abstractproperty
430
426
431
427
# Regular expression matching correct type variable names. If left empty, type
432
428
# variable names will be checked with the set naming style.
433
- typevar-rgx =None
429
+ # typevar-rgx=
434
430
435
431
# Naming style matching correct variable names.
436
432
variable-naming-style =snake_case
437
433
438
434
# Regular expression matching correct variable names. Overrides variable-
439
435
# naming-style. If left empty, variable names will be checked with the set
440
436
# naming style.
441
- variable-rgx =None
437
+ # variable-rgx=
442
438
443
439
444
440
[FORMAT]
0 commit comments