{"library":"remark-lint-ordered-list-marker-style","title":"remark-lint-ordered-list-marker-style","description":"A remark-lint rule (v4.0.1, ESM-only, TypeScript typed) that warns when ordered list markers in Markdown violate a configured style (dot or parenthesis). Part of the remark-lint ecosystem, it supports detecting the first style used and flagging inconsistencies. Released as part of remark-lint monorepo with consistent versioning; compatible with Node.js 16+ and integrates with unified ecosystem. Differentiators: built-in fix support, preset inclusion (consistent, markdown-style-guide, recommended), and no runtime dependencies beyond remark-lint peer.","language":"javascript","status":"active","last_verified":"Fri May 01","install":{"commands":["npm install remark-lint-ordered-list-marker-style"],"cli":null},"imports":["import remarkLintOrderedListMarkerStyle from 'remark-lint-ordered-list-marker-style'","import type {Options} from 'remark-lint-ordered-list-marker-style'","import type {Style} from 'remark-lint-ordered-list-marker-style'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import {unified} from 'unified';\nimport remarkParse from 'remark-parse';\nimport remarkStringify from 'remark-stringify';\nimport remarkLint from 'remark-lint';\nimport remarkLintOrderedListMarkerStyle from 'remark-lint-ordered-list-marker-style';\n\nconst processor = unified()\n  .use(remarkParse)\n  .use(remarkStringify)\n  .use(remarkLint)\n  .use(remarkLintOrderedListMarkerStyle, '.'); // Enforce dot style\n\nconst md = '1. Item\\n2) Item';\nconst file = await processor.process(md);\nconsole.log(String(file));\n// Output includes warning about second marker\n","lang":"typescript","description":"Shows how to parse Markdown, lint ordered list markers with dot style, and process output.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}