diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-08-03 20:16:19 -0400 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2020-08-03 18:38:00 -0700 |
commit | aa329cafb8f7354a02c4da745ccf9208e0d4e4f8 (patch) | |
tree | db4667d79ec6744e91fd629f682fcad9b27468ad /pylintrc | |
parent | lib/portage/util/env_update.py: fix unnecessary-semicolon (diff) | |
download | portage-aa329cafb8f7354a02c4da745ccf9208e0d4e4f8.tar.gz portage-aa329cafb8f7354a02c4da745ccf9208e0d4e4f8.tar.bz2 portage-aa329cafb8f7354a02c4da745ccf9208e0d4e4f8.zip |
pylintrc: enable more checks
* These checks are already passing... so let's enable them so we do not
have regressions
* Sort the checks alphabetically and break into more manageable
structure
* Display all warnings/errors from pylint by enabling all messages as
all listed checks are now passing. This will allow folks to run
'pylint' without having to modify the pylintrc.
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -12,7 +12,15 @@ # --disable=W". #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module disable=all -enable=redefined-builtin,useless-object-inheritance,trailing-newlines,unused-import,trailing-whitespace +enable=missing-final-newline, + mixed-line-endings, + redefined-builtin, + trailing-newlines, + trailing-whitespace, + unexpected-line-ending-format, + unnecessary-semicolon, + unused-import, + useless-object-inheritance # A comma-separated list of package or module names from where C extensions may # be loaded. Extensions are loading into the active Python interpreter and may @@ -51,7 +59,7 @@ unsafe-load-any-extension=no # Only show warnings with the listed confidence levels. Leave empty to show # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED. -confidence=HIGH +confidence= [REPORTS] |