npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

prettier-plugin-markdown-list-tabwidth

v1.2.0

Published

A Prettier plugin that reverts the change in Prettier v3.4.0 that altered how Markdown list items are indented.

Readme

prettier-plugin-markdown-list-tabwidth

NPM Downloads NPM Version NPM License NPM Last Update NPM Unpacked Size GitHub last commit Discord

A Prettier plugin that reverts the change in Prettier v3.4.0 that altered how Markdown list items are indented.

Starting in v3.4.0, Prettier switched to a fixed single space between a list marker and the list text, regardless of your configured tabWidth.

Prior to this change, Prettier ensured that the marker + following spaces always consumed exactly tabWidth characters, producing indentation that aligned consistently across nested lists, multiline items, and mixed marker widths.

Any other issues you may have experienced due to the v3.4.0 update are also fixed by this plugin.

The way this plugin works is that it replaces the parser and printer/formatter for Markdown, MDX, and Remark with the ones from Prettier v3.3.3.

This plugin supports Markdown, MDX, and Remark.

Installation

Install Prettier if you haven't already:

npm i prettier --save-dev

Install the plugin:

npm i prettier-plugin-markdown-list-tabwidth --save-dev

Usage

To use the plugin, just add prettier-plugin-markdown-list-tabwidth to the plugins array of your prettier config.

// .prettierrc
{
    "plugins": ["prettier-plugin-markdown-list-tabwidth"]
}

If you are having issues with the plugin, try importing the full-replace version, which will export the Markdown language and options from Prettier v3.3.3 as well, which should fix your issue.

// .prettierrc
{
    "plugins": ["prettier-plugin-markdown-list-tabwidth/full-replace"]
}

Example config:

// .prettierrc
{
    "arrowParens": "always",
    "bracketSpacing": true,
    "endOfLine": "crlf",
    "htmlWhitespaceSensitivity": "css",
    "insertPragma": false,
    "singleAttributePerLine": false,
    "bracketSameLine": false,
    "jsxBracketSameLine": false,
    "jsxSingleQuote": false,
    "printWidth": 160,
    "proseWrap": "preserve",
    "quoteProps": "as-needed",
    "requirePragma": false,
    "semi": true,
    "singleQuote": false,
    "tabWidth": 4,
    "trailingComma": "es5",
    "useTabs": false,
    "embeddedLanguageFormatting": "auto",
    "vueIndentScriptAndStyle": false,
    "experimentalTernaries": true,
    "plugins": ["prettier-plugin-markdown-list-tabwidth"],
    "objectWrap": "preserve",
    "overrides": [
        {
            "files": ".hintrc",
            "options": {
                "parser": "json"
            }
        }
    ]
}