template-python / .vscode /settings.json
npv2k1's picture
feat: enhance development setup with Black and Ruff configuration, update README, and remove unused loader module
696363c
raw
history blame contribute delete
493 Bytes
{
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": "explicit"
}
},
"editor.formatOnSave": true,
"python.analysis.typeCheckingMode": "basic",
"ruff.organizeImports": true,
"ruff.fixAll": true
}