Browse Source

pylintrc: add (commented) ruleset for debugging imports

Wojtek Porczyk 8 years ago
parent
commit
454e1835fe
1 changed files with 14 additions and 0 deletions
  1. 14 0
      .pylintrc

+ 14 - 0
.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]