chore: configure markdownlint VS Code extension

Install and configure markdownlint extension for in-editor linting with
visual feedback (squiggly lines, Problems panel, quick fixes).

Changes:
- Install davidanson.vscode-markdownlint extension
- Configure .vscode/settings.json to use .markdownlint.json
- Enable immediate visual feedback for markdown style issues

Benefits:
- Real-time markdown linting while editing
- Quick fixes via lightbulb (Ctrl+.)
- Problems panel integration (Ctrl+Shift+M)
- Consistent with CLI linting configuration
This commit is contained in:
Stephan Lo 2025-10-23 14:30:35 +02:00
parent f797af114b
commit acbdf33fac

View file

@ -18,5 +18,9 @@
"titleBar.activeForeground": "#15202b", "titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#61dafb99", "titleBar.inactiveBackground": "#61dafb99",
"titleBar.inactiveForeground": "#15202b99" "titleBar.inactiveForeground": "#15202b99"
},
// Markdown linting
"markdownlint.config": {
"extends": ".markdownlint.json"
} }
} }