improve pylance ignored rules.

LISA is using mypy for checking, and use pylance for code intelligence.
Ignore pylance rules which conflict with mypy.
This commit is contained in:
Chi Song 2021-05-05 15:32:41 -07:00 коммит произвёл Gustavo Lima Chaves
Родитель 6aa4b4b506
Коммит 68fef7c03b
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -67,7 +67,8 @@ environment.
"reportUnknownParameterType": "none",
"reportUnboundVariable": "none",
"reportPrivateUsage": "none",
"reportImportCycles": "none"
"reportImportCycles": "none",
"reportUnnecessaryIsInstance": "none",
},
"python.languageServer": "Pylance",
"python.pythonPath": "<python path>\\python.exe",