This package provides the following services:
linter-node-markdownlint
This linter plugin for Linter provides an interface to markdownlint.
Configuration
The package reads the configuration from the .markdownlintrc
file.
The configuration file can be formatted as JSON
or INI
.
JSON Example
{
"default": true,
"MD003": { "style": "atx_closed" },
"MD007": { "indent": 4 },
"no-hard-tabs": false,
"MD018": false
}
INI Example
default=true
no-hard-tabs=false
MD018=false
[MD003]
style=atx_closed
[MD007]
indent=4
For more information checkout:
- The markdownlint list of rules
- The markdownlint list of tags
- The markdownlint-cli configuration file example