mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
This adds information on how the docs use linting, and more detailed instructions on how to enable it in an IDE, using VSCode as a concrete and widespread example. Additionally, to do this, we add a duplicate style config for markdownlint in JSON format for the Node.js implementation of markdownlint that is used by various editor plugins. These both implement the same core set of warnings, and appear to function identically.
13 lines
341 B
JSON
13 lines
341 B
JSON
{
|
|
"default": false,
|
|
"hr-style": true,
|
|
"no-missing-space-atx": true,
|
|
"no-multiple-space-atx": true,
|
|
"no-missing-space-closed-atx": true,
|
|
"no-multiple-space-closed-atx": true,
|
|
"no-space-in-emphasis": true,
|
|
"no-space-in-code": true,
|
|
"no-space-in-links": true,
|
|
"ol-prefix": {"style": "ordered"},
|
|
"no-reversed-links": true
|
|
} |