Add workaround for pylint performance bug.

See https://bitbucket.org/logilab/pylint/issue/395/horrible-performance-related-to-inspect
This commit is contained in:
Florian Bruhin 2015-01-20 00:03:13 +01:00
parent 2e45c2c063
commit 958e67ab9e

View File

@ -13,7 +13,8 @@ exclude=test_.*
[pylint]
args=--output-format=colorized,--reports=no,--rcfile=.pylintrc
plugins=config,crlf,modeline,settrace,openencoding
exclude=resources.py
# excluding command.py is a WORKAROUND for https://bitbucket.org/logilab/pylint/issue/395/horrible-performance-related-to-inspect
exclude=resources.py,command.py
[flake8]
args=--config=.flake8