vscode-python3/.vscode/settings.json

17 lines
No EOL
527 B
JSON

{
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"git.closeDiffOnOperation": true,
"python.analysis.typeCheckingMode": "basic",
"python.languageServer": "Pylance",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"--import-mode=importlib"
],
}