From 454e1835fe972c214fdfdd7968214b92989ef1a2 Mon Sep 17 00:00:00 2001 From: Wojtek Porczyk Date: Mon, 16 May 2016 15:57:32 +0200 Subject: [PATCH] pylintrc: add (commented) ruleset for debugging imports --- .pylintrc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.pylintrc b/.pylintrc index 6266a81f..9ae7e34a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -45,6 +45,20 @@ disable= abstract-class-little-used, bad-continuation +# +# OTHER NICE SETS +# + +# IMPORTS +#disable=all +#enable= +# cyclic-import, +# import-error, +# no-member, +# super-on-old-class, +# undefined-variable, +# unused-import + [REPORTS]