remove mypy

This commit is contained in:
wh1te909 2023-05-25 20:35:35 +00:00
parent ee47b8d004
commit 021ddc17e7
1 changed files with 10 additions and 10 deletions

20
.vscode/settings.json vendored
View File

@ -1,10 +1,7 @@
{
"python.defaultInterpreterPath": "api/env/bin/python",
"python.languageServer": "Pylance",
"python.analysis.extraPaths": [
"api/tacticalrmm",
"api/env"
],
"python.analysis.extraPaths": ["api/tacticalrmm", "api/env"],
"python.analysis.diagnosticSeverityOverrides": {
"reportUnusedImport": "error",
"reportDuplicateImport": "error",
@ -24,11 +21,11 @@
".vscode/*.py",
"**env/**"
],
"python.formatting.provider": "black",
"mypy.targets": [
"api/tacticalrmm"
],
"mypy.runUsingActiveInterpreter": true,
"python.formatting.provider": "none",
//"mypy.targets": [
//"api/tacticalrmm"
//],
//"mypy.runUsingActiveInterpreter": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
@ -74,5 +71,8 @@
"usePlaceholders": true,
"completeUnimported": true,
"staticcheck": true
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}
}