From a8b64d69712a6b1087f0461b44764dcfae90b377 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 30 Jan 2014 15:55:08 +0100 Subject: [PATCH] Update pylint ignores --- run_checks.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/run_checks.py b/run_checks.py index 64f929ab9..ca1cda7ce 100644 --- a/run_checks.py +++ b/run_checks.py @@ -70,13 +70,15 @@ pylint_disable = [ '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 + 'fixme', '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 'old-style-class', - 'global-statement', # Sometimes necessary + 'global-statement', 'abstract-class-little-used', # False-positives + 'bad-builtin', # map/filter can be nicer than comprehensions + 'too-many-arguments', ] flake8_disable = [