pylintrc: add (commented) ruleset for debugging imports

This commit is contained in:
Wojtek Porczyk 2016-05-16 15:57:32 +02:00
parent 786884ad7a
commit 454e1835fe

View File

@ -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]