Socket
Socket
Sign inDemoInstall

remark-preset-lint-recommended

Package Overview
Dependencies
16
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    remark-preset-lint-recommended

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


Version published
Weekly downloads
86K
decreased by-2.07%
Maintainers
2
Install size
334 kB
Created
Weekly downloads
 

Readme

Source

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:

RuleSetting
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

Keywords

FAQs

Last updated on 12 Oct 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc