From 4fe62b316f00c26fcefba89e9b0720b71682c9ef Mon Sep 17 00:00:00 2001 From: Guangxiong Lin Date: Tue, 11 Apr 2023 23:24:02 +0800 Subject: Update pylintrc --- .pylintrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 3a89edc..d7375a5 100644 --- a/.pylintrc +++ b/.pylintrc @@ -67,7 +67,7 @@ ignored-modules= # Python code to execute, usually for sys.path manipulation such as # pygtk.require(). -#init-hook= +init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc())); sys.path.append('.')" # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the # number of processors available to use, and will cap the count on Windows to @@ -432,7 +432,9 @@ disable=raw-checker-failed, missing-class-docstring, missing-function-docstring, missing-module-docstring, - consider-using-f-string + consider-using-f-string, + too-few-public-methods, + too-many-public-methods # 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 -- cgit v1.2.3