remark-lint/packages/remark-preset-lint-recommended
2020-03-30 14:11:23 +02:00
..
index.js Refactor prose in packages 2019-06-20 10:51:46 +02:00
package.json Publish a patch version for all packages 2020-03-24 15:07:01 +01:00
readme.md Update dev-dependencies 2020-03-30 14:11:23 +02:00

remark-preset-lint-recommended

Build Coverage Downloads Size Sponsors Backers Chat

remark preset to configure remark-lint with settings that prevent mistakes or syntaxes that do not work correctly across vendors.

Rules

This preset configures remark-lint with the following rules:

Rule Setting
final-newline
list-item-bullet-indent
list-item-indent 'tab-size'
no-auto-link-without-protocol
no-blockquote-without-marker
no-literal-urls
ordered-list-marker-style '.'
hard-break-spaces
no-duplicate-definitions
no-heading-content-indent
no-inline-padding
no-shortcut-reference-image
no-shortcut-reference-link
no-undefined-references
no-unused-definitions

Install

npm:

npm install remark-preset-lint-recommended

Use

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

 …
 "remarkConfig": {
+  "plugins": ["preset-lint-recommended"]
 }
 …

Or use it on the CLI directly

remark -u preset-lint-recommended readme.md

Or use this on the API:

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

 remark()
+  .use(require('remark-preset-lint-recommended'))
   .process('_Emphasis_ and **importance**', function (err, file) {
     console.error(report(err || file))
   })

Contribute

See contributing.md in remarkjs/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

License

MIT © Titus Wormer