Nanobit commited on
Commit
d57ba56
1 Parent(s): c3a4697

Ignore import and too many * pylint errors

Browse files
Files changed (1) hide show
  1. .pylintrc +4 -1
.pylintrc CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  [TYPECHECK]
2
 
3
  # List of members which are set dynamically and missed by Pylint inference
@@ -6,4 +9,4 @@ generated-members=numpy.*, torch.*
6
 
7
 
8
  [pylint.messages_control]
9
- disable=W1203, C0116, C0301
 
1
+ [MASTER]
2
+ init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))"
3
+
4
  [TYPECHECK]
5
 
6
  # List of members which are set dynamically and missed by Pylint inference
 
9
 
10
 
11
  [pylint.messages_control]
12
+ disable=W1203, C0116, C0301, E0401, R0912, R0914, R0915