-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[REF] cfg: cleanup pylintrc, remove non-existent messages
This commit updates pylintrc configuration files used for pylint. It removes a bunch of messages that don't exist anymore or updates their name in cases when they were renamed. Checks removed were either: * renamed * applied to python 2 * are now performed by other tools * applied to really old versions of odoo Some cases which have official documentation are the following: * bad-continuation and bad-whitespace were removed in pylint 2.6 https://pylint.pycqa.org/en/v2.11.1/whatsnew/2.6.html * bad-optional-value was split into useless-option-value and unknown-option-value https://pylint.pycqa.org/en/latest/user_guide/messages/error/bad-option-value.html * missing-docstring split into three checks (module,class,function) https://pylint.pycqa.org/en/latest/user_guide/messages/convention/missing-docstring.html * no-self-use is redundant since the extension that creates it is not used * no-init was removed pylint-dev/pylint#6373 * useless-super-delegation was renamed to useless-parent-delegation
- Loading branch information
Showing
2 changed files
with
14 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters