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-phun-ky

v1.0.35

Published

An opinionated eslint-config that someone else could also use, with more than 450 helpful ESLint rules

Readme

eslint-config-phun-ky

An opinionated eslint-config that someone else could also use, with more than 450 helpful ESLint rules :)

Commitizen friendly PRs Welcome SemVer 2.0 npm version issues license size npm GitHub Repo stars

Table of Contents

Install

npm i -D eslint eslint-config-phun-ky

Requires ESLint >=9.20.0 and flat config.

Usage

// eslint.config.js
import { defineConfig } from 'eslint/config';
import customConfig from 'eslint-config-phun-ky';

export default defineConfig([
  {
    files: ['**/*.js'],
    extends: [customConfig],

    // anything from here will override customConfig
    rules: {
      '@stylistic/no-extra-semi': '0'
    }
  }
]);

Files

By default, the config covers these files:

['**/*.{js,mjs,cjs,ts,tsx,md}']

Rules

The custom rules extends/overrides these configs and plugins:

{
  …,
  {
    ...markdown.configs.recommended,
    eslint.configs.recommended,
    importPlugin.flatConfigs.recommended,
    importPlugin.flatConfigs.typescript,
    compat.configs['flat/recommended'],
    ...tsConfigs.recommended,
    eslintPluginPrettierRecommended,
  },
  plugins: {
    '@stylistic': stylistic
  },
  …
}

Extended

🔧 Automatically fixable with --fix CLI option.

| Rule | Description | 🔧 | | --------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | --- | | import/no-named-as-default | Disallows named imports that may conflict with default exports. | | | import/no-unused-modules | Reports modules without any exports or imports used elsewhere. | | | import/order | Enforces a consistent order for import statements. | 🔧 | | no-alert | Disallows alert, confirm, and prompt. | | | no-console | Disallows use of console. | | | no-undef | Disallows the use of undeclared variables unless mentioned in /*global */ comments. | | | no-unreachable | Disallows unreachable code after return, throw, continue, and break. | | | prefer-const | Suggests using const declaration for variables that are never reassigned. | 🔧 | | one-var | Enforces variables to be declared either together or separately in functions. | 🔧 | | @stylistic/array-bracket-newline | Enforces line breaks inside brackets. | 🔧 | | @stylistic/max-len | Enforces a maximum line length. | | | @stylistic/quotes | Enforces the consistent use of quotes. | 🔧 | | @stylistic/padded-blocks | Enforces or disallows padding within blocks. | 🔧 | | @stylistic/comma-dangle | Requires or disallows trailing commas. | 🔧 | | @stylistic/padding-line-between-statements | Requires or disallows blank lines between statements. | 🔧 | | @stylistic/indent | Enforces consistent indentation. | 🔧 | | @stylistic/object-curly-spacing | Enforces consistent spacing inside braces. | 🔧 | | @stylistic/no-extra-semi | Disallows unnecessary semicolons. | 🔧 | | @stylistic/no-trailing-spaces | Disallows trailing whitespace at the end of lines. | 🔧 | | @stylistic/semi | Enforces or disallows semicolons. | 🔧 | | no-irregular-whitespace | Disallows irregular whitespace. | 🔧 |

Contributing

Want to contribute? Please read the CONTRIBUTING.md and CODE_OF_CONDUCT.md

License

This project is licensed under the MIT License - see the LICENSE file for details.

Changelog

See the CHANGELOG.md for details on the latest updates.

Sponsor me

I'm an Open Source evangelist, creating stuff that does not exist yet to help get rid of secondary activities and to enhance systems already in place, be it documentation or web sites.

The sponsorship is an unique opportunity to alleviate more hours for me to maintain my projects, create new ones and contribute to the large community we're all part of :)

Support me on GitHub Sponsors.

p.s. Ukraine is still under brutal Russian invasion. A lot of Ukrainian people are hurt, without shelter and need help. You can help in various ways, for instance, directly helping refugees, spreading awareness, putting pressure on your local government or companies. You can also support Ukraine by donating e.g. to Red Cross, Ukraine humanitarian organisation or donate Ambulances for Ukraine.