Skip to content

Commit ffdaa93

Browse files
Upgrade to examples/pylintrc
1 parent 6e7fd4b commit ffdaa93

File tree

1 file changed

+19
-23
lines changed

1 file changed

+19
-23
lines changed

examples/pylintrc

Lines changed: 19 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ analyse-fallback-blocks=no
77

88
# Load and enable all available extensions. Use --list-extensions to see a list
99
# all available extensions.
10-
enable-all-extensions=None
10+
#enable-all-extensions=
1111

1212
# In error mode, checkers without error messages are disabled and for others,
1313
# only the ERROR messages are displayed, and no reports are done by default.
14-
errors-only=None
14+
#errors-only=
1515

1616
# Always return a 0 (non-error) status code, even if lint errors are found.
1717
# This is primarily useful in continuous integration scripts.
18-
exit-zero=False
18+
#exit-zero=
1919

2020
# A comma-separated list of package or module names from where C extensions may
2121
# be loaded. Extensions are loading into the active Python interpreter and may
@@ -38,7 +38,7 @@ fail-under=10
3838

3939
# Interpret the stdin as a python script, whose filename needs to be passed as
4040
# the module_or_package argument.
41-
from-stdin=False
41+
#from-stdin=
4242

4343
# Files or directories to be skipped. They should be base names, not paths.
4444
ignore=CVS
@@ -60,7 +60,7 @@ ignored-modules=
6060

6161
# Python code to execute, usually for sys.path manipulation such as
6262
# pygtk.require().
63-
init-hook=None
63+
#init-hook=
6464

6565
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
6666
# number of processors available to use.
@@ -94,7 +94,7 @@ suggestion-mode=yes
9494
unsafe-load-any-extension=no
9595

9696
# In verbose mode, extra non-checker-related info will be displayed.
97-
verbose=None
97+
#verbose=
9898

9999

100100
[REPORTS]
@@ -113,7 +113,7 @@ msg-template=
113113
# Set the output format. Available formats are text, parseable, colorized, json
114114
# and msvs (visual studio). You can also give a reporter class, e.g.
115115
# mypackage.mymodule.MyReporterClass.
116-
output-format=None
116+
#output-format=
117117

118118
# Tells whether to display a full report or only the messages.
119119
reports=no
@@ -233,10 +233,6 @@ contextmanager-decorators=contextlib.contextmanager
233233
# expressions are accepted.
234234
generated-members=
235235

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-
240236
# Tells whether to warn about missing members when the owner of the attribute
241237
# is inferred to be None.
242238
ignore-none=yes
@@ -313,15 +309,15 @@ argument-naming-style=snake_case
313309
# Regular expression matching correct argument names. Overrides argument-
314310
# naming-style. If left empty, argument names will be checked with the set
315311
# naming style.
316-
argument-rgx=None
312+
#argument-rgx=
317313

318314
# Naming style matching correct attribute names.
319315
attr-naming-style=snake_case
320316

321317
# Regular expression matching correct attribute names. Overrides attr-naming-
322318
# style. If left empty, attribute names will be checked with the set naming
323319
# style.
324-
attr-rgx=None
320+
#attr-rgx=
325321

326322
# Bad variable names which should always be refused, separated by a comma.
327323
bad-names=foo,
@@ -341,30 +337,30 @@ class-attribute-naming-style=any
341337
# Regular expression matching correct class attribute names. Overrides class-
342338
# attribute-naming-style. If left empty, class attribute names will be checked
343339
# with the set naming style.
344-
class-attribute-rgx=None
340+
#class-attribute-rgx=
345341

346342
# Naming style matching correct class constant names.
347343
class-const-naming-style=UPPER_CASE
348344

349345
# Regular expression matching correct class constant names. Overrides class-
350346
# const-naming-style. If left empty, class constant names will be checked with
351347
# the set naming style.
352-
class-const-rgx=None
348+
#class-const-rgx=
353349

354350
# Naming style matching correct class names.
355351
class-naming-style=PascalCase
356352

357353
# Regular expression matching correct class names. Overrides class-naming-
358354
# style. If left empty, class names will be checked with the set naming style.
359-
class-rgx=None
355+
#class-rgx=
360356

361357
# Naming style matching correct constant names.
362358
const-naming-style=UPPER_CASE
363359

364360
# Regular expression matching correct constant names. Overrides const-naming-
365361
# style. If left empty, constant names will be checked with the set naming
366362
# style.
367-
const-rgx=None
363+
#const-rgx=
368364

369365
# Minimum line length for functions/classes that require docstrings, shorter
370366
# ones are exempt.
@@ -376,7 +372,7 @@ function-naming-style=snake_case
376372
# Regular expression matching correct function names. Overrides function-
377373
# naming-style. If left empty, function names will be checked with the set
378374
# naming style.
379-
function-rgx=None
375+
#function-rgx=
380376

381377
# Good variable names which should always be accepted, separated by a comma.
382378
good-names=i,
@@ -399,21 +395,21 @@ inlinevar-naming-style=any
399395
# Regular expression matching correct inline iteration names. Overrides
400396
# inlinevar-naming-style. If left empty, inline iteration names will be checked
401397
# with the set naming style.
402-
inlinevar-rgx=None
398+
#inlinevar-rgx=
403399

404400
# Naming style matching correct method names.
405401
method-naming-style=snake_case
406402

407403
# Regular expression matching correct method names. Overrides method-naming-
408404
# style. If left empty, method names will be checked with the set naming style.
409-
method-rgx=None
405+
#method-rgx=
410406

411407
# Naming style matching correct module names.
412408
module-naming-style=snake_case
413409

414410
# Regular expression matching correct module names. Overrides module-naming-
415411
# style. If left empty, module names will be checked with the set naming style.
416-
module-rgx=None
412+
#module-rgx=
417413

418414
# Colon-delimited sets of names that determine each other's naming style when
419415
# the name regexes allow several styles.
@@ -430,15 +426,15 @@ property-classes=abc.abstractproperty
430426

431427
# Regular expression matching correct type variable names. If left empty, type
432428
# variable names will be checked with the set naming style.
433-
typevar-rgx=None
429+
#typevar-rgx=
434430

435431
# Naming style matching correct variable names.
436432
variable-naming-style=snake_case
437433

438434
# Regular expression matching correct variable names. Overrides variable-
439435
# naming-style. If left empty, variable names will be checked with the set
440436
# naming style.
441-
variable-rgx=None
437+
#variable-rgx=
442438

443439

444440
[FORMAT]

0 commit comments

Comments
 (0)