1
0
Fork 0
envoyer/.vscode/settings.json

29 lines
764 B
JSON
Raw Normal View History

2025-01-05 22:12:38 +00:00
{
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[properties]": {
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.formatOnPaste": false
},
"editor.formatOnSave": true,
"files.exclude": {
"**/.git": true,
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
},
"files.associations": {
"*.local": "properties"
},
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
}