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

@pycolors/eslint-config

v1.0.1

Published

Production-ready ESLint configs for Next.js, React, TypeScript and Turborepo projects.

Downloads

231

Readme

npm license

@pycolors/eslint-config

⚠️ Read-only mirror

This repository is automatically synced from the PyColors monorepo.
Source of truth: https://github.com/pycolors-io/pycolors/tree/main/packages/eslint-config

👉 Please open issues and pull requests here --- they are synced upstream.

Production-ready ESLint configurations for modern TypeScript and React applications.

Designed to enforce consistent code quality, predictable patterns, and scalable architecture across the PyColors ecosystem.


Why this exists

Most teams waste time reinventing lint rules.

PyColors provides a battle-tested baseline so you can focus on shipping product --- not debating formatting rules.

This config is optimized for:

  • Next.js apps
  • React libraries
  • Turborepo monorepos
  • TypeScript-first codebases

Install

pnpm add -D @pycolors/eslint-config eslint
# or
npm install -D @pycolors/eslint-config eslint

Usage

Next.js

Create an eslint.config.mjs:

import { nextJsConfig } from "@pycolors/eslint-config/next-js";

export default nextJsConfig;

React library

import { config } from "@pycolors/eslint-config/react-internal";

export default config;

Base config

import { config } from "@pycolors/eslint-config/base";

export default config;

What's inside

This package bundles a curated set of rules:

  • ESLint recommended
  • TypeScript ESLint
  • React + Hooks
  • Next.js Core Web Vitals
  • Prettier compatibility
  • Turbo rules for monorepos
  • Only-warn plugin to reduce CI friction

The goal is simple:

👉 strict enough to prevent bugs
👉 practical enough to keep velocity high


Design philosophy

PyColors tools are built around one principle:

Consistency scales.

When every project shares the same lint foundation:

  • onboarding becomes faster
  • reviews become simpler
  • architecture becomes predictable

Versioning

This package follows Semantic Versioning.

  • 1.x → stable baseline
  • rule additions → minor
  • breaking rule changes → major

Roadmap

Planned improvements:

  • stricter TypeScript presets
  • security-focused rules
  • performance linting
  • optional formatting layer

License

MIT


Links

  • PyColors → https://pycolors.io
  • PyColors Docs→ https://pycolors.io/docs
  • UI → https://github.com/pycolors-io/pycolors-ui
  • Tokens → https://github.com/pycolors-io/pycolors-tokens