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

@sushichan044/eslint-todo

v0.2.6

Published

A simple tool to gradually resolve a large number of ESLint violations.

Downloads

3,014

Readme

@sushichan044/eslint-todo

A simple tool to gradually resolve a large number of ESLint violations.

It allows you to temporarily disable violations and fix them at your own pace.

Ask DeepWiki

[!CAUTION] This library will be subject to destructive changes based on ESLint bulk suppressions.

Installation

npm install --save-dev eslint @sushichan044/eslint-todo

Requires:

  • ES Module
  • ESLint: ^8.57.0 || ^9.0.0
    • Flat Config Required
    • If you are using legacy config, you must migrate into flat config first.
  • Node.js: ^20.12.0 || ^22.0.0 || >=24.0.0
    • May work in Deno, but not tested.

Getting Started

  1. Add eslint-todo config at the bottom of your configs. Do not forget await.

    // example: eslint.config.js
    + import eslintConfigTodo from '@sushichan044/eslint-todo/eslint';
    
    export default [
      // your existing configs,
    + ...(await eslintConfigTodo())
    ]
  2. Run eslint-todo to generate ESLint Todo file at the directory where eslint.config.js is placed.

    npx @sushichan044/eslint-todo

Usage

1. Generate ESLint Todo file to temporarily suppress existing violations

npx @sushichan044/eslint-todo

2. Correct ignored errors

Add --correct flag to launch eslint-todo with correct mode.

In this mode, you can make suppressed violations detectable again according to flexible conditions.

For example, to resolve 40 violations from any rule other than @typescript-eslint/no-explicit-any, specify it as follows.

eslint-todo --correct \
  --correct.autoFixableOnly false \
  --correct.partialSelection \
  --correct.exclude.rules '@typescript-eslint/no-explicit-any' \
  --correct.limit.count 40 \
  --correct.limit.type violation

This will allow ESLint to detect the errors again, enabling you to have them fixed by AI or other tools.

Configuration

Configuration via CLI flags

You can config eslint-todo by passing a flag to the CLI. Use npx eslint-todo --help to see all available options.

[!WARNING] If you specified any config via CLI flags, your config file will be ignored completely.

Exceptionally, these flags have no effect on this behavior:

  • --correct
  • --mcp

Configuration File

Just create eslint-todo.config.{js,ts}:

// example: eslint-todo.config.ts
import { defineConfig } from '@sushichan044/eslint-todo/config';

export default defineConfig({
  correct: {
    limit: {
      count: 30,
      type: "violation",
    },
  },
});

You can check all available options at here.

Sure!

{
  "$schema": "node_modules/@sushichan044/eslint-todo/config-schema.json",
  "correct": {
    "limit": {
      "count": 30,
      "type": "violation"
    }
  }
}

Use as MCP server (Experimental)

eslint-todo provides some useful tools to AI Agents via MCP.

You mus specify --mcp and --root <root path>.

Setup for VSCode

update .vscode/mcp.json in your workspace:

{
  "servers": {
    "eslint-todo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "@sushichan044/eslint-todo",
        "--mcp",
        "--root",
        "${workspaceFolder}"
      ]
    }
  }
}