diff options
-rw-r--r-- | .pylintrc | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |