🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

remark-lint-ordered-list-marker-style

Package Overview
Dependencies
Maintainers
0
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-style

remark-lint rule to warn when the markers of ordered lists violate a given style

4.0.1
latest
Source
npm
Version published
Weekly downloads
174K
-12.75%
Maintainers
0
Weekly downloads
 
Created

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

The remark-lint-ordered-list-marker-style package is a plugin for remark-lint that enforces a consistent marker style for ordered lists in Markdown files. It helps maintain a uniform style by ensuring that ordered lists use either a period (.) or a parenthesis ()) after the list marker.

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

Enforce period marker style

This configuration enforces the use of a period (.) after the list marker in ordered lists. For example, '1. Item' instead of '1) Item'.

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

Enforce parenthesis marker style

This configuration enforces the use of a parenthesis ()) after the list marker in ordered lists. For example, '1) Item' instead of '1. Item'.

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

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

Keywords

lint

FAQs

Package last updated on 27 Jan 2025

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