Updated settings.json

This commit is contained in:
Tim Rid 2022-10-31 09:54:15 +01:00
parent ce871936d9
commit 25883cb7c8

32
.vscode/settings.json vendored
View file

@ -1,24 +1,26 @@
{
"python.pythonPath": "python",
// static analysis
"python.languageServer": "Pylance",
// "python.testing.unittestEnabled": false,
// "python.testing.nosetestsEnabled": false,
// "python.testing.pytestEnabled": true,
"pythonTestExplorer.testFramework": "pytest",
"python.formatting.provider": "black",
"python.sortImports.path": "isort",
"python.sortImports.args": [
"--profile=black",
],
// "[python]": {
// "editor.codeActionsOnSave": {
// "source.organizeImports": true
// }
// }
"python.analysis.typeCheckingMode": "strict",
"python.analysis.autoImportCompletions": false,
"python.analysis.diagnosticSeverityOverrides": {
"reportPrivateUsage": "information",
"reportUntypedNamedTuple": "information",
},
// formating
"python.formatting.provider": "black",
// sorting
"python.sortImports.path": "isort",
"python.sortImports.args": [
"--profile=black",
],
// tests
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
}