From f518b5b7f24133b7f3b230397f9fe4ee1c39a2e2 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 26 Mar 2015 07:56:29 +0100 Subject: [PATCH] lint: Move options from parameters to config files. This is needed for tox support as we get rid of run_checks.py. --- .flake8 | 1 + .pylintrc | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 5233b8c31..29d9c8be4 100644 --- a/.flake8 +++ b/.flake8 @@ -10,3 +10,4 @@ # W503: line break before binary operator ignore=E265,E501,F841,F401,E402,E266,W503 max_complexity = 12 +exclude=resources.py diff --git a/.pylintrc b/.pylintrc index 3ba0c1275..daa68e14a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,8 +1,13 @@ # vim: ft=dosini fileencoding=utf-8: [MASTER] -ignore=ez_setup.py +ignore=resources.py extension-pkg-whitelist=PyQt5,sip +load-plugins=pylint_checkers.config, + pylint_checkers.crlf, + pylint_checkers.modeline, + pylint_checkers.openencoding, + pylint_checkers.settrace [MESSAGES CONTROL] disable=no-self-use,