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

eslint-config-inprov

v1.0.3

Published

Strict ESLint configuration for TypeScript projects with optional React/Next.js support

Readme

eslint-config-inprov

Strict ESLint configuration for TypeScript projects with optional React/Next.js support.

Built on @antfu/eslint-config with additional security, code quality, and complexity rules.

Features

  • Strict TypeScript - 40+ type-aware rules for maximum type safety
  • Security - eslint-plugin-security for vulnerability detection
  • Code Quality - eslint-plugin-sonarjs for code smell detection
  • Complexity Limits - max-depth, max-lines-per-function, cyclomatic complexity
  • React Compiler - Optional react-compiler plugin for React 19+
  • Test Relaxations - Automatic rule relaxation for test files

Installation via Git Subtree

Add to your project:

git subtree add --prefix=eslint-config-inprov https://github.com/YOUR_USERNAME/eslint-config.git main --squash

Install peer dependencies:

npm install -D @antfu/eslint-config eslint eslint-plugin-security eslint-plugin-sonarjs typescript

# For React projects:
npm install -D eslint-plugin-react-compiler

Usage

Create eslint.config.mjs in your project root:

import eslintConfig from './eslint-config-inprov';

export default eslintConfig({
  // Enable React rules (default: false)
  react: true,

  // Enable Next.js rules (default: false)
  nextjs: true,

  // Path to tsconfig.json (required)
  tsconfigPath: './tsconfig.json',

  // Additional ignore patterns
  ignores: ['dist/**', 'build/**'],

  // Test file patterns for relaxed rules
  testFiles: ['**/__tests__/**/*.ts', '**/*.test.ts'],

  // Files where console.log is allowed
  consoleAllowedFiles: ['src/logger.ts'],
});

Base TypeScript Project (no React)

import eslintConfig from './eslint-config-inprov';

export default eslintConfig({
  tsconfigPath: './tsconfig.json',
});

React/Next.js Project

import eslintConfig from './eslint-config-inprov';

export default eslintConfig({
  react: true,
  nextjs: true,
  tsconfigPath: './tsconfig.json',
});

Updating the Subtree

Pull latest changes:

git subtree pull --prefix=eslint-config-inprov https://github.com/YOUR_USERNAME/eslint-config.git main --squash

Rule Categories

Complexity Rules

  • max-depth: 4 - Maximum nesting depth
  • max-nested-callbacks: 3 - Maximum callback nesting
  • max-params: 4 - Maximum function parameters
  • max-lines-per-function: 60 - Maximum lines per function
  • complexity: 10 - Maximum cyclomatic complexity

TypeScript Rules

  • Strict type checking (no-explicit-any, no-unsafe-*)
  • Consistent imports/exports (consistent-type-imports)
  • Promise handling (no-floating-promises, no-misused-promises)
  • Explicit return types and member accessibility

Code Quality Rules

  • No console statements (except in allowed files)
  • Strict equality (eqeqeq)
  • Curly braces required (curly)
  • Prefer modern syntax (prefer-const, prefer-template)

Test File Relaxations

Test files automatically get relaxed rules:

  • No complexity limits
  • any types allowed
  • Console allowed
  • Magic numbers allowed
  • Explicit return types not required

Advanced Usage

Import individual presets for customization:

import { basePlugins, baseRules, testFileRules } from './eslint-config-inprov/presets/base.mjs';

License

MIT