Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1# IDE Setup Recommendations
2
3## VS Code
4
5Install these extensions for the best development experience:
6
7- **Python** (Microsoft)
8- **Ruff** (Astral Software)
9- **MyPy Type Checker** (Microsoft)
10
11**Settings** (add to `.vscode/settings.json`):
12
13```json
14{
15 "python.defaultInterpreterPath": ".venv/bin/python",
16 "ruff.enable": true,
17 "ruff.organizeImports": true,
18 "python.analysis.typeCheckingMode": "basic"
19}
20```