Disable no-else-return

This commit is contained in:
Kevin Fronczak
2018-08-09 09:37:57 -04:00
committed by GitHub
parent 0e63e97a57
commit 7b0db80edd
+3 -1
View File
@@ -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,
too-few-public-methods,
no-else-return,