From cf1d0b616ba9d9877cbba05614f3d3d4e2d2551a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 28 Jan 2014 19:51:49 +0100 Subject: [PATCH] run_checks: Disable more pylint --- run_checks.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/run_checks.py b/run_checks.py index c0ac449a7..5a2e3ae99 100644 --- a/run_checks.py +++ b/run_checks.py @@ -29,10 +29,16 @@ def run(name, args=None): print() pylint_disable = [ - 'import-error', 'no-name-in-module', # import seems unreliable - 'invalid-name', # short variable names can be nice - 'star-args', # we want to use this - 'fixme', # I'll decide myself when to fix them + 'import-error', # import seems unreliable + 'no-name-in-module', + 'invalid-name', # short variable names can be nice + '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',