run_checks: Ignore too-many-locals for pylint.

This commit is contained in:
Florian Bruhin 2014-02-06 13:40:28 +01:00
parent 04ffbc3e53
commit bd8b1029b7

View File

@ -89,6 +89,7 @@ pylint_disable = [
'abstract-class-little-used', # False-positives
'bad-builtin', # map/filter can be nicer than comprehensions
'too-many-arguments',
'too-many-locals',
]
flake8_disable = [