@@ -7,7 +7,7 @@ analyse-fallback-blocks=no
7
7
8
8
# Clear in-memory caches upon conclusion of linting. Useful if running pylint
9
9
# in a server-like mode.
10
- clear-cache-post-run =no
10
+ # clear-cache-post-run=no
11
11
12
12
# Load and enable all available extensions. Use --list-extensions to see a list
13
13
# all available extensions.
@@ -89,7 +89,7 @@ persistent=yes
89
89
90
90
# Resolve imports to .pyi stubs if available. May reduce no-member messages and
91
91
# increase not-an-iterable messages.
92
- prefer-stubs =no
92
+ # prefer-stubs=no
93
93
94
94
# Minimum Python version to use for version dependent checks. Will default to
95
95
# the version used to run pylint.
@@ -102,7 +102,7 @@ recursive=no
102
102
# source root is an absolute path or a path relative to the current working
103
103
# directory used to determine a package namespace for modules located under the
104
104
# source root.
105
- source-roots =
105
+ # source-roots=
106
106
107
107
# When enabled, pylint would attempt to guess common misconfiguration and emit
108
108
# user-friendly hints instead of false-positive error messages.
@@ -363,7 +363,7 @@ single-line-if-stmt=no
363
363
allow-any-import-level =
364
364
365
365
# Allow explicit reexports by alias from a package __init__.
366
- allow-reexport-from-package =no
366
+ # allow-reexport-from-package=no
367
367
368
368
# Allow wildcard imports from modules that define __all__.
369
369
allow-wildcard-with-all =no
@@ -433,9 +433,8 @@ disable=raw-checker-failed,
433
433
suppressed-message,
434
434
useless-suppression,
435
435
deprecated-pragma,
436
- use-implicit-booleaness-not-comparison-to-string,
437
- use-implicit-booleaness-not-comparison-to-zero,
438
- use-symbolic-message-instead
436
+ use-symbolic-message-instead,
437
+ duplicate-code
439
438
440
439
# Enable the message, report, category or checker with the given id(s). You can
441
440
# either give multiple identifier separated by comma (,) or put this option
@@ -448,7 +447,7 @@ enable=
448
447
449
448
# List of qualified names (i.e., library.method) which require a timeout
450
449
# parameter e.g. 'requests.api.get,requests.api.post'
451
- timeout-methods =requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
450
+ # timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
452
451
453
452
454
453
[MISCELLANEOUS]
@@ -476,7 +475,7 @@ never-returning-functions=sys.exit,argparse.parse_error
476
475
# Let 'consider-using-join' be raised when the separator to join on would be
477
476
# non-empty (resulting in expected fixes of the type: ``"- " + " -
478
477
# ".join(items)``)
479
- suggest-join-with-non-empty-separator =yes
478
+ # suggest-join-with-non-empty-separator=yes
480
479
481
480
482
481
[REPORTS]
0 commit comments