From a7bb02ffbde015ad5d2bb41e79ea9259f3600070 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Wed, 22 Nov 2023 17:41:07 +0000 Subject: [PATCH] removed deprecated lint settings --- .vscode/settings.json | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 89b301f013c7..7a225c846d5f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -36,13 +36,6 @@ "i18n-ally.localesPaths": "frontend/lang/messages", "i18n-ally.sourceLanguage": "en-US", "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", - "python.formatting.provider": "black", - "python.linting.enabled": true, - "python.linting.flake8Enabled": false, - "python.linting.pylintEnabled": false, - "python.linting.pylintArgs": [ - "--rcfile=${workspaceFolder}/.pylintrc" - ], "python.testing.autoTestDiscoverOnSaveEnabled": false, "python.testing.pytestArgs": [ "tests" @@ -50,7 +43,6 @@ "python.testing.pytestEnabled": true, "python.testing.unittestEnabled": false, "python.analysis.typeCheckingMode": "off", - "python.linting.mypyEnabled": true, "search.mode": "reuseEditor", "python.testing.unittestArgs": [ "-v", @@ -69,4 +61,7 @@ "[vue]": { "editor.formatOnSave": false }, + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter", + }, }