{"library":"remark-lint-list-item-bullet-indent","title":"remark-lint-list-item-bullet-indent","description":"remark-lint rule to warn when list item markers (bullets or numbers) are indented. The current stable version is 5.0.1, released as part of the remark-lint monorepo with regular updates. It enforces that list items start at column 1, preventing uncommon and hard-to-maintain indented list styles. Key differentiator: it only checks indentation of the marker itself, not content indentation, and is included in the `remark-preset-lint-recommended` preset. It is ESM-only, supports Node.js 16+, and ships TypeScript types.","language":"javascript","status":"active","last_verified":"Fri May 01","install":{"commands":["npm install remark-lint-list-item-bullet-indent"],"cli":{"name":"remark","version":null}},"imports":["import remarkLintListItemBulletIndent from 'remark-lint-list-item-bullet-indent'","import remarkLintListItemBulletIndent from 'remark-lint-list-item-bullet-indent'","import remarkLintListItemBulletIndent from 'https://esm.sh/remark-lint-list-item-bullet-indent@5'","import remarkLintListItemBulletIndent from 'remark-lint-list-item-bullet-indent'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import { read } from 'to-vfile';\nimport { reporter } from 'vfile-reporter';\nimport { unified } from 'unified';\nimport remarkParse from 'remark-parse';\nimport remarkStringify from 'remark-stringify';\nimport remarkLint from 'remark-lint';\nimport remarkLintListItemBulletIndent from 'remark-lint-list-item-bullet-indent';\n\nconst file = await read('example.md');\n\nawait unified()\n  .use(remarkParse)\n  .use(remarkStringify)\n  .use(remarkLint)\n  .use(remarkLintListItemBulletIndent)\n  .process(file);\n\nconsole.error(reporter(file));","lang":"typescript","description":"Shows how to integrate remark-lint-list-item-bullet-indent into a unified pipeline to lint a Markdown file for indented list markers.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}