From 4d3c2e284e4056e5e32ccd84794095dfb9a5de27 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 9 Feb 2021 12:31:55 +0800 Subject: [PATCH] style(pylint): exclude checkers "too many nested_blocks/branches/statements" --- .pylintrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.pylintrc b/.pylintrc index 9a67db0cbe..0717f43f40 100644 --- a/.pylintrc +++ b/.pylintrc @@ -147,6 +147,9 @@ disable=print-statement, too-few-public-methods, too-many-locals, bad-super-call, # since we still haven't drop python2 support + too-many-nested-blocks, + too-many-branches, + too-many-statements, # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option