run_checks: Disable more pylint
This commit is contained in:
parent
bcfe99da5e
commit
cf1d0b616b
@ -29,10 +29,16 @@ def run(name, args=None):
|
|||||||
print()
|
print()
|
||||||
|
|
||||||
pylint_disable = [
|
pylint_disable = [
|
||||||
'import-error', 'no-name-in-module', # import seems unreliable
|
'import-error', # import seems unreliable
|
||||||
'invalid-name', # short variable names can be nice
|
'no-name-in-module',
|
||||||
'star-args', # we want to use this
|
'invalid-name', # short variable names can be nice
|
||||||
'fixme', # I'll decide myself when to fix them
|
'star-args', # we want to use this
|
||||||
|
'fixme', # I'll decide myself when to fix them
|
||||||
|
'too-many-public-methods', # Basically unavoidable with Qt
|
||||||
|
'no-self-use', # I'll decide that myself, thanks
|
||||||
|
'super-on-old-class', # These don't even exist in python3
|
||||||
|
'old-style-class',
|
||||||
|
'global-statement', # Sometimes necessary
|
||||||
]
|
]
|
||||||
|
|
||||||
run('pylint', ['--ignore=appdirs.py', '--output-format=colorized',
|
run('pylint', ['--ignore=appdirs.py', '--output-format=colorized',
|
||||||
|
Loading…
Reference in New Issue
Block a user