From cccf3a9b3b100df88ead6a74d8663c7c8043ef7e Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Fri, 4 Dec 2020 10:57:02 +0800 Subject: [PATCH] pylint: disable more checkers - too-few-public-methods - too-many-locals - bad-super-call --- .pylintrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.pylintrc b/.pylintrc index 2a8db72259..cf3e1a80ee 100644 --- a/.pylintrc +++ b/.pylintrc @@ -144,6 +144,9 @@ disable=print-statement, missing-module-docstring, wrong-import-order, invalid-name, + too-few-public-methods, + too-many-locals, + bad-super-call, # since we still haven't drop python2 support # 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