Socket
Socket
Sign inDemoInstall

remark-lint-ordered-list-marker-value

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remark-lint-ordered-list-marker-value

remark-lint rule to warn when the marker value of ordered lists violates a given style


Version published
Weekly downloads
108K
increased by12.96%
Maintainers
2
Weekly downloads
 
Created

What is remark-lint-ordered-list-marker-value?

The remark-lint-ordered-list-marker-value package is a plugin for remark-lint that enforces consistent marker values in ordered lists. It helps maintain a uniform style in Markdown documents by ensuring that ordered list markers follow a specified pattern.

What are remark-lint-ordered-list-marker-value's main functionalities?

Consistent Ordered List Marker Values

This feature ensures that ordered list markers are in a consistent order. For example, if the first item is '1.', the second item should be '2.', and so on. The 'ordered' option enforces this rule.

module.exports = {
  plugins: [
    ['remark-lint-ordered-list-marker-value', 'ordered']
  ]
};

Enforce Specific Marker Value

This feature enforces that all ordered list markers use the value '1.'. This can be useful for lists where the actual order is not important, but consistency is.

module.exports = {
  plugins: [
    ['remark-lint-ordered-list-marker-value', 'one']
  ]
};

Other packages similar to remark-lint-ordered-list-marker-value

Keywords

FAQs

Package last updated on 30 Mar 2020

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