|
| 1 | +{ |
| 2 | + "folders": [ |
| 3 | + { |
| 4 | + "name": "/", |
| 5 | + "path": ".", |
| 6 | + }, |
| 7 | + ], |
| 8 | + "extensions": { |
| 9 | + "recommendations": [ |
| 10 | + "bufbuild.vscode-buf", |
| 11 | + "charliermarsh.ruff", |
| 12 | + "esbenp.prettier-vscode", |
| 13 | + "github.vscode-github-actions", |
| 14 | + "ms-python.python", |
| 15 | + "ms-python.vscode-pylance", |
| 16 | + "tombi-toml.tombi", |
| 17 | + ], |
| 18 | + }, |
| 19 | + "settings": { |
| 20 | + "editor.formatOnSave": true, |
| 21 | + "files.insertFinalNewline": true, |
| 22 | + "python.analysis.typeCheckingMode": "basic", |
| 23 | + "python.defaultInterpreterPath": "${workspaceFolder:/}/.venv/bin/python", |
| 24 | + "python.testing.pytestEnabled": true, |
| 25 | + "python.testing.pytestArgs": ["test"], |
| 26 | + "python.testing.unittestEnabled": false, |
| 27 | + "[github-actions-workflow]": { |
| 28 | + "editor.formatOnSave": true, |
| 29 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 30 | + }, |
| 31 | + "debugpy.debugJustMyCode": false, |
| 32 | + "[python]": { |
| 33 | + "editor.formatOnSave": true, |
| 34 | + "editor.codeActionsOnSave": { |
| 35 | + "source.fixAll": "explicit", |
| 36 | + "source.organizeImports": "explicit", |
| 37 | + }, |
| 38 | + "editor.defaultFormatter": "charliermarsh.ruff", |
| 39 | + }, |
| 40 | + "[json][jsonc]": { |
| 41 | + "editor.formatOnSave": true, |
| 42 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 43 | + }, |
| 44 | + "yaml.format.enable": false, |
| 45 | + "[yaml]": { |
| 46 | + "editor.formatOnSave": true, |
| 47 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 48 | + }, |
| 49 | + }, |
| 50 | +} |
0 commit comments