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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@deseteral/eslint-config

v8.0.0

Published

Customized Airbnb ESLint configuration for JavaScript and TypeScript projects

Readme

Deseteral ESLint config

Customized Airbnb ESLint configuration for JavaScript and TypeScript projects

Usage

First you gotta install it:

npm i --save-dev eslint @deseteral/eslint-config

Then you gotta setup your .eslintrc to extend that config:

{
  "extends": "@deseteral/eslint-config"
}

...or if you're using TypeScript:

{
  "extends": "@deseteral/eslint-config/typescript"
}

The last thing you have to do is put linting script in your project's package.json:

"scripts": {
  "lint": "eslint src --ext js,jsx,ts,tsx"
}

Changelog

[8.0.0] - 2023-11-08

Changed

  • Upgraded dependencies.

[7.0.0] - 2023-01-13

Changed

  • Upgraded ESLint rules dependencies.

[6.1.1] - 2023-01-13

Fixed

  • Upgraded dependencies.

[6.1.0] - 2022-12-31

Changed

  • Disabled no-dupe-class-members because it's handled by TypeScript.

[6.0.3] - 2022-05-24

Fixed

  • Reverted changes from last version.

[6.0.2] - 2022-05-24

Fixed

  • Replaced indent with it's TypeScript equivalent.

[6.0.1] - 2022-04-09

Fixed

  • Bad config for import/no-default-export.
  • Added function-paren-newline rule.

[6.0.0] - 2022-04-09

Changed

  • Upgraded deps. ESLint 8 is now minimum required version.
  • Removed disabling dot-notation rule.
  • Replaced import/prefer-default-export with import/no-default-export rule.

[5.1.0] - 2021-10-31

Changed

  • Turned off react/require-default-props' rule for TypeScript

[5.0.1] - 2021-10-29

Fixed

  • Migrated package-lock to version 2

[5.0.0] - 2021-05-23

Changed

  • Added type-annotation-spacing rule for TypeScript

[4.1.0] - 2021-05-04

Changed

  • Upgraded deps

[4.0.0] - 2021-03-15

Changed

  • Upgraded ESLint

[3.0.3] - 2021-03-15

Fixed

  • Fixed false-positive no-shadow when defining enums in TypeScript

[3.0.2] - 2020-10-06

Fixed

  • Fixed false-positive no-use-before-define when using TypeScript

[3.0.1] - 2020-10-04

Fixed

  • Fixed false-positive no-unused-expressions when using optional call expressions in TypeScript

[3.0.0] - 2020-10-03

Changed

  • Upgraded ESLint version
  • Upgraded Airbnb config
  • Enabled rules of Hooks
  • Allowed using _id as variable name (for MongoDB ObjectID representation)

Fixed

  • Fixed false-positive Cannot read property 'map' of undefined errors for TypeScript

[2.0.1] - 2019-12-31

Fixed

  • Disabled import/extensions for TypeScript projects

[2.0.0] - 2019-12-31

Changed

  • Upgraded ESLint version
  • Upgraded Airbnb config
  • Enabled TypeScript extensions for import/extensions rule

[1.3.1] - 2019-05-08

Fixed

  • Babel parser is now in dependencies not dev dependencies.

[1.3.0] - 2019-05-08

Changed

  • ESLint is now using Babel as its code parser.

[1.2.0] - 2019-04-03

Added

  • Rule specifing use of operator linebreak.

[1.1.0] - 2019-03-10

Added

  • JSX is now allowed in files with .tsx extension.

[1.0.0] - 2019-02-24

  • Initial release.

License

This project is licensed under the MIT license.