From e3234a2524217a7221cc4c32b8125d9d18a896a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Fri, 1 Jan 2021 13:59:19 +0100 Subject: [PATCH] Add too-many-branches to disabled pylint rules --- .prospector.yaml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.prospector.yaml b/.prospector.yaml index b2bd4a9c5..9ccdb82e9 100644 --- a/.prospector.yaml +++ b/.prospector.yaml @@ -5,18 +5,19 @@ pylint: options: max-line-length: 110 disable: - - abstract-method + - too-many-instance-attributes + - too-many-ancestors + - too-many-return-statements + - too-many-branches - too-many-arguments + - too-many-locals + - too-few-public-methods + - wrong-import-order + - no-else-return + - abstract-method - invalid-name - redefined-builtin - broad-except - - too-many-locals - - no-else-return - - wrong-import-order - - too-many-instance-attributes - - too-many-ancestors - - too-few-public-methods - - too-many-return-statements - cyclic-import # see: https://github.com/PyCQA/pylint/issues/850 pep8: