mirror of
https://github.com/trycua/computer.git
synced 2026-01-07 22:10:02 -06:00
25 lines
754 B
JSON
25 lines
754 B
JSON
{
|
|
"python-envs.pythonProjects": [],
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"extensions.ignoreRecommendations": false,
|
|
"python.formatting.provider": "black",
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
},
|
|
"[javascript][typescript][typescriptreact][javascriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"ruff.configuration": "${workspaceFolder}/pyproject.toml",
|
|
"mypy-type-checker.args": [
|
|
"--config-file",
|
|
"${workspaceFolder}/pyproject.toml"
|
|
],
|
|
"mypy-type-checker.path": [
|
|
"${workspaceFolder}"
|
|
]
|
|
} |