From 021ddc17e7798cb29ee65f93a769037a37121bbe Mon Sep 17 00:00:00 2001 From: wh1te909 Date: Thu, 25 May 2023 20:35:35 +0000 Subject: [PATCH] remove mypy --- .vscode/settings.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2f833232..ad5cf19d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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" } -} \ No newline at end of file +}