diff options
author | Aaron Bauman <bman@gentoo.org> | 2020-08-04 10:08:09 -0400 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2020-08-04 12:27:58 -0700 |
commit | 8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40 (patch) | |
tree | 436254cff86713a69087cebee417b9a7ce547f88 /pylintrc | |
parent | tox: add pylint (diff) | |
download | portage-8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40.tar.gz portage-8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40.tar.bz2 portage-8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40.zip |
pylintrc: add more module checks
* Repo is already clear... so let's turn these on
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 27 |
1 files changed, 17 insertions, 10 deletions
@@ -13,16 +13,23 @@ #disable=no-absolute-import,bad-continuation,C0103,C0114,C0115,E1101,W0201,no-name-in-module disable=all enable= - missing-final-newline, - mixed-line-endings, - redefined-builtin, - reimported, - trailing-newlines, - trailing-whitespace, - unexpected-line-ending-format, - unnecessary-semicolon, - unused-import, - useless-object-inheritance + cyclic-import, + import-error, + import-self, + misplaced-future, + missing-final-newline, + mixed-line-endings, + redefined-builtin, + reimported, + relative-beyond-top-level, + trailing-newlines, + trailing-whitespace, + unexpected-line-ending-format, + unnecessary-semicolon, + unused-import, + useless-import-alias, + useless-object-inheritance, + wildcard-import # 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 |