Files
2025-10-11 17:03:02 +02:00

25 lines
714 B
JSON

{
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.linting.mypyEnabled": true,
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"test*.py"
],
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
"python.envFile": "${workspaceFolder}/.env",
"python.analysis.ignore": ["*"],
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
}
},
"python.terminal.activateEnvironment": true,
"python.terminal.activateEnvInCurrentTerminal": true
}