MarkdownLint

Markdown linting and style checking for Visual Studio Code.

Integration with visual studio code

Install through vscode extensions. Search for markdownlint.

settings.json

Configure settings to be overridden for the markdown language.

{
    "[markdown]": {
        "editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
        "editor.tabSize": 4,
        "editor.formatOnSave": false,
        "editor.codeActionsOnSave": {
            "source.fixAll.markdownlint": true
        }
    },
}