mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
disable the refactoring checker
This commit is contained in:
parent
6766786049
commit
78a3461248
1 changed files with 6 additions and 1 deletions
|
|
@ -72,7 +72,12 @@ extension-pkg-whitelist=pywintypes,win32api,win32file,win32security
|
|||
# (unspecified encoding makes the open function use the default encoding of the system)
|
||||
# than a clear flaw on which a check should be enforced. Anyway the project does
|
||||
# not need to enforce encoding on files so we disable this check.
|
||||
disable=fixme,locally-disabled,locally-enabled,bad-continuation,no-self-use,invalid-name,cyclic-import,duplicate-code,design,import-outside-toplevel,useless-object-inheritance,unsubscriptable-object,no-value-for-parameter,no-else-return,no-else-raise,no-else-break,no-else-continue,raise-missing-from,wrong-import-order,unspecified-encoding
|
||||
# 7) pylint's refactoring checker makes suggestions on how code could be
|
||||
# structured differently. These checks are very opinionated and have caused
|
||||
# pylint to fail on Certbot when it's upgraded so let's disable this checker
|
||||
# entirely. You can see a list of the things the checker considers at
|
||||
# https://pylint.pycqa.org/en/v2.11.1/technical_reference/features.html#refactoring-checker.
|
||||
disable=fixme,locally-disabled,locally-enabled,bad-continuation,no-self-use,invalid-name,cyclic-import,duplicate-code,design,import-outside-toplevel,useless-object-inheritance,unsubscriptable-object,no-value-for-parameter,no-else-return,no-else-raise,no-else-break,no-else-continue,raise-missing-from,wrong-import-order,unspecified-encoding,refactoring
|
||||
|
||||
[REPORTS]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue