21 lines
555 B
JSON
21 lines
555 B
JSON
{
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
|
"python.analysis.extraPaths": [
|
|
"${workspaceFolder}/src"
|
|
],
|
|
"python.analysis.typeCheckingMode": "basic",
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit",
|
|
"source.organizeImports": "explicit"
|
|
}
|
|
},
|
|
"ruff.nativeServer": "on",
|
|
"files.exclude": {
|
|
"**/__pycache__": true,
|
|
".pytest_cache": true,
|
|
".ruff_cache": true
|
|
}
|
|
} |