2933b8c1ea
Co-authored-by: Copilot <copilot@github.com>
29 lines
836 B
JSON
29 lines
836 B
JSON
{
|
|
"python.defaultInterpreterPath": "",
|
|
"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
|
|
},
|
|
"chat.tools.terminal.autoApprove": {
|
|
"/root/projects/finn-mcp/.venv/bin/python": true,
|
|
"make": true,
|
|
".venv/bin/coverage": true,
|
|
".venv/bin/pytest": true
|
|
}
|
|
} |