23 lines
655 B
JSON
23 lines
655 B
JSON
{
|
|
"python.defaultInterpreterPath": ".venv/bin/python",
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestArgs": [
|
|
"tests"
|
|
],
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
},
|
|
"ruff.enable": true,
|
|
"chat.instructionsFilesLocations": {
|
|
".github/instructions": true
|
|
},
|
|
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
"**/.pytest_cache": true,
|
|
"**/.mypy_cache": true,
|
|
"**/.ruff_cache": true
|
|
}
|
|
} |