Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-markdownlint

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-markdownlint

Eslint plugin for markdownlint

  • 0.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
17K
increased by18.2%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-markdownlint

Eslint plugin which runs markdownlint.

npm version License: MIT

Install

npm install eslint-plugin-markdownlint --save-dev

Usage

In order to use this plugin there is required to put it into override section of .eslintrc file with defined files array (select markdown files), parser and rules.

Recommended config enable all options except deprecated, all with default values and reported as error.

{
  "overrides": [{
    "files": ["*.md"],
    "parser": "eslint-plugin-markdownlint/parser",
    "extends": ["plugin:markdownlint/recommended"]
  }]
}

If you want to modify recommended rules simply add related rule to the rules section.

{
  "overrides": [{
    "files": ["*.md"],
    "parser": "eslint-plugin-markdownlint/parser",
    "extends": ["plugin:markdownlint/recommended"],
    "rules": {
      "markdownlint/md001": "off",
      "markdownlint/md003": "warn",
      "markdownlint/md025": ["error", {
        "level": 2
      }]
    }
  }]
}

If you want to configure all settings manually, ommit "extends": ["plugin:markdownlint/recommended"] (all rules will be set to 'off'), then enable/configure requested rules in "rules" section.

It's worth to define separate entry in .editorconfig if you're using it. Following example uses default settings.

[*.md]
max_line_length = 80
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

Limitations

This plugin is in early stage of development, so:

  • there isn't supported any config file like .mdlrc
  • aliases for rules are not supported, you need to use codes like mdXXX to select rule, but should be available in future
  • tags are not supported and there is no plans to support it

Markdownlint

For full documentation about markdownlint refer DavidAnson/markdownlint

Keywords

FAQs

Package last updated on 06 May 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc