remark-lint/packages/remark-lint-list-item-content-indent
2018-11-22 12:25:55 +01:00
..
index.js Refactor code-style 2018-11-22 12:25:55 +01:00
package.json Move URLs to HTTPS 2018-11-22 12:19:09 +01:00
readme.md Move URLs to HTTPS 2018-11-22 12:19:09 +01:00

remark-lint-list-item-content-indent

Warn when the content of a list item has mixed indentation.

Presets

This rule is included in the following presets:

Preset Setting
remark-preset-lint-consistent
remark-preset-lint-markdown-style-guide

Example

valid.md
In

Note: · represents a space.

1.·[x] Alpha
···1. Bravo
Out

No messages.

invalid.md
In

Note: · represents a space.

1.·[x] Charlie
····1. Delta
Out
2:5: Dont use mixed indentation for children, remove 1 space

Install

npm install remark-lint-list-item-content-indent

Usage

You probably want to use it on the CLI through a config file:

 ...
 "remarkConfig": {
   "plugins": [
     ...
     "lint",
+    "lint-list-item-content-indent",
     ...
   ]
 }
 ...

Or use it on the CLI directly

remark -u lint -u lint-list-item-content-indent readme.md

Or use this on the API:

 var remark = require('remark');
 var report = require('vfile-reporter');

 remark()
   .use(require('remark-lint'))
+  .use(require('remark-lint-list-item-content-indent'))
   .process('_Emphasis_ and **importance**', function (err, file) {
     console.error(report(err || file));
   });

License

MIT © Titus Wormer