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
26 lines
No EOL
1,009 B
JSON
26 lines
No EOL
1,009 B
JSON
{
|
|
"peacock.remoteColor": "#61dafb",
|
|
"workbench.colorCustomizations": {
|
|
"activityBar.activeBackground": "#93e6fc",
|
|
"activityBar.background": "#93e6fc",
|
|
"activityBar.foreground": "#15202b",
|
|
"activityBar.inactiveForeground": "#15202b99",
|
|
"activityBarBadge.background": "#fa45d4",
|
|
"activityBarBadge.foreground": "#15202b",
|
|
"commandCenter.border": "#15202b99",
|
|
"sash.hoverBorder": "#93e6fc",
|
|
"statusBar.background": "#61dafb",
|
|
"statusBar.foreground": "#15202b",
|
|
"statusBarItem.hoverBackground": "#2fcefa",
|
|
"statusBarItem.remoteBackground": "#61dafb",
|
|
"statusBarItem.remoteForeground": "#15202b",
|
|
"titleBar.activeBackground": "#61dafb",
|
|
"titleBar.activeForeground": "#15202b",
|
|
"titleBar.inactiveBackground": "#61dafb99",
|
|
"titleBar.inactiveForeground": "#15202b99"
|
|
},
|
|
// Markdown linting
|
|
"markdownlint.config": {
|
|
"extends": ".markdownlint.json"
|
|
}
|
|
} |