| { | |
| "github.copilot.chat.commitMessageGeneration.instructions": [ | |
| { | |
| "text": "Use concise conventional commit messages with a type prefix (e.g. fix:, feat:, docs:, chore:, refactor:, or test:)." | |
| } | |
| ], | |
| // Python files | |
| // NOTE: Ruff extension required | |
| "[python]": { | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "charliermarsh.ruff", | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": "explicit", | |
| "source.organizeImports": "explicit" | |
| } | |
| }, | |
| // Markdown files | |
| "[markdown]": { | |
| "editor.formatOnSave": true, | |
| }, | |
| } | |