EOS/.vscode/settings.shared.json
Chris de9fe2ddc9 Add settings and extension recommendations (#139)
- Added recommended settings for the Pylance and Pyright extensions
- Enabled pytest and debugging support in configuration
- Reformatted code with Prettier
---------
Co-authored-by: Chris <git@nootch.de>
2024-11-10 23:00:16 +01:00

14 lines
448 B
JSON

{
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.defaultFoldingRangeProvider": "charliermarsh.ruff",
"editor.formatOnSave": true,
"python.analysis.autoImportCompletions": true,
"mypy-type-checker.importStrategy": "fromEnvironment",
"python.testing.pytestArgs": [],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}