From 6e4b749b59ebae82c613fe799dda7cb21dc080cd Mon Sep 17 00:00:00 2001 From: Petr Spacek Date: Thu, 19 May 2016 14:25:31 +0200 Subject: pylint: replace Refactor category with individual check names This eases enabling/disabling individual tests like cyclic-import. Reviewed-By: Martin Basti --- pylintrc | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'pylintrc') diff --git a/pylintrc b/pylintrc index 7ef441844..bb9c63686 100644 --- a/pylintrc +++ b/pylintrc @@ -16,8 +16,25 @@ enable= python3 disable= - R, I, + cyclic-import, + duplicate-code, + import-error, + interface-not-implemented, + no-self-use, + redefined-variable-type, + simplifiable-if-statement, + too-few-public-methods, + too-many-ancestors, + too-many-arguments, + too-many-boolean-expressions, + too-many-branches, + too-many-instance-attributes, + too-many-locals, + too-many-nested-blocks, + too-many-public-methods, + too-many-return-statements, + too-many-statements, import-error, abstract-method, anomalous-backslash-in-string, -- cgit