From 7b0db80edd1556624e26b57819e037ec7717c45d Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Thu, 9 Aug 2018 09:37:57 -0400 Subject: [PATCH] Disable no-else-return --- pylintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index 4c1c361..95ef270 100644 --- a/pylintrc +++ b/pylintrc @@ -7,6 +7,7 @@ reports=no # unused-argument - generic callbacks and setup methods create a lot of warnings # too-many-* - are not enforced for the sake of readability # too-few-* - same as too-many-* +# no-else-return - I don't see any reason to enforce this. both forms are readable disable= locally-disabled, @@ -20,4 +21,5 @@ disable= too-many-return-statements, too-many-statements, too-many-lines, - too-few-public-methods, \ No newline at end of file + too-few-public-methods, + no-else-return,