From d57ba56746c083f736b92900fa6b5b2417548762 Mon Sep 17 00:00:00 2001 From: NanoCode012 Date: Mon, 29 May 2023 09:20:04 +0900 Subject: [PATCH] Ignore import and too many * pylint errors --- .pylintrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 9cf1babc3..11180e7f6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -1,3 +1,6 @@ +[MASTER] +init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))" + [TYPECHECK] # List of members which are set dynamically and missed by Pylint inference @@ -6,4 +9,4 @@ generated-members=numpy.*, torch.* [pylint.messages_control] -disable=W1203, C0116, C0301 +disable=W1203, C0116, C0301, E0401, R0912, R0914, R0915