From 8b10dc3f5bd1ed85f0944ca6f2e9bb6fdafa7f40 Mon Sep 17 00:00:00 2001 From: Aaron Bauman Date: Tue, 4 Aug 2020 10:08:09 -0400 Subject: pylintrc: add more module checks * Repo is already clear... so let's turn these on Signed-off-by: Aaron Bauman Signed-off-by: Zac Medico --- pylintrc | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) (limited to 'pylintrc') diff --git a/pylintrc b/pylintrc index ad32f70d7..cdfd48653 100644 --- a/pylintrc +++ b/pylintrc @@ -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 -- cgit v1.2.3-65-gdbad