Update pylint ignores

This commit is contained in:
Florian Bruhin 2014-01-30 15:55:08 +01:00
parent 2ee518c20f
commit a8b64d6971

View File

@ -70,13 +70,15 @@ pylint_disable = [
'no-name-in-module', 'no-name-in-module',
'invalid-name', # short variable names can be nice 'invalid-name', # short variable names can be nice
'star-args', # we want to use this 'star-args', # we want to use this
'fixme', # I'll decide myself when to fix them 'fixme',
'too-many-public-methods', # Basically unavoidable with Qt 'too-many-public-methods', # Basically unavoidable with Qt
'no-self-use', # I'll decide that myself, thanks 'no-self-use',
'super-on-old-class', # These don't even exist in python3 'super-on-old-class', # These don't even exist in python3
'old-style-class', 'old-style-class',
'global-statement', # Sometimes necessary 'global-statement',
'abstract-class-little-used', # False-positives 'abstract-class-little-used', # False-positives
'bad-builtin', # map/filter can be nicer than comprehensions
'too-many-arguments',
] ]
flake8_disable = [ flake8_disable = [