setup.cfg: Disable some overly conservative pylint checks
authorJuerg Haefliger <juergh@proton.me>
Sat, 11 Feb 2023 08:11:50 +0000 (09:11 +0100)
committerJuerg Haefliger <juergh@proton.me>
Sat, 11 Feb 2023 08:16:01 +0000 (09:16 +0100)
Disable some 'too-many-<foo>' and 'too-few-<bar>' checks which we don't
really care about too much :-).

Signed-off-by: Juerg Haefliger <juergh@proton.me>
setup.cfg

index cde74f6bab893b6507974b34c21aad9eee179ffd..00a726a0c1e3c88482f763732bf17d5107ae6c84 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -28,4 +28,8 @@ disable = invalid-name,
           too-many-arguments,
           too-many-locals,
           too-many-statements,
-          redefined-outer-name
+          redefined-outer-name,
+          # End of default disables
+          too-many-branches,
+          too-many-return-statements,
+          too-few-public-methods