removed deprecated lint settings

This commit is contained in:
Michael Genson 2023-11-22 17:41:07 +00:00
parent 31579d09a3
commit a7bb02ffbd

11
.vscode/settings.json vendored
View File

@ -36,13 +36,6 @@
"i18n-ally.localesPaths": "frontend/lang/messages", "i18n-ally.localesPaths": "frontend/lang/messages",
"i18n-ally.sourceLanguage": "en-US", "i18n-ally.sourceLanguage": "en-US",
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", "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.autoTestDiscoverOnSaveEnabled": false,
"python.testing.pytestArgs": [ "python.testing.pytestArgs": [
"tests" "tests"
@ -50,7 +43,6 @@
"python.testing.pytestEnabled": true, "python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false, "python.testing.unittestEnabled": false,
"python.analysis.typeCheckingMode": "off", "python.analysis.typeCheckingMode": "off",
"python.linting.mypyEnabled": true,
"search.mode": "reuseEditor", "search.mode": "reuseEditor",
"python.testing.unittestArgs": [ "python.testing.unittestArgs": [
"-v", "-v",
@ -69,4 +61,7 @@
"[vue]": { "[vue]": {
"editor.formatOnSave": false "editor.formatOnSave": false
}, },
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
},
} }