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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@code-pushup/eslint-config

v0.9.1

Published

Recommended ESLint presets by Code PushUp

Downloads

1,841

Readme

@code-pushup/eslint-config

npm License: MIT

Recommended ESLint presets by Code PushUp.

⚙️ Configs

| Stack | Config | Description | | :----------------------------------------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------ | | javascript | @code-pushup | Default config, suitable for any JavaScript/TypeScript project. | | typescript | @code-pushup/eslint-config/typescript | Config for strict TypeScript projects. | | nodejs | @code-pushup/eslint-config/node | Config for Node.js projects. | | angular | @code-pushup/eslint-config/angular | Config for Angular projects. | | ngrx | @code-pushup/eslint-config/angular-ngrx | Config for Angular projects using NgRx library. | | graphql | @code-pushup/eslint-config/graphql | Config for GraphQL servers implemented in Node.js. | | jest | @code-pushup/eslint-config/jest | Config for projects using Jest for testing. | | vitest | @code-pushup/eslint-config/vitest | Config for projects using Vitest for testing. | | cypress | @code-pushup/eslint-config/cypress | Config for projects using Cypress for testing. | | storybook | @code-pushup/eslint-config/storybook | Config for projects using Storybook for UI components. |

Some configs extend other configs, as illustrated below. So, for example, adding "extends": ["@code-pushup/eslint-config/angular"] implicitly includes @code-pushup/eslint-config/typescript and @code-pushup as well.

  graph BT;
    index("@code-pushup")
    typescript("@code-pushup/eslint-config/typescript")
    node("@code-pushup/eslint-config/node")
    angular("@code-pushup/eslint-config/angular")
    angular-ngrx("@code-pushup/eslint-config/angular-ngrx")
    graphql("@code-pushup/eslint-config/graphql")
    typescript --extends--> index
    node --extends--> index
    angular --extends--> typescript
    angular-ngrx --extends--> angular
    graphql --extends--> node

🏗️ Setup

To use the default config, follow these steps:

  1. You must first install all the required peer dependencies (if you haven't already):

    npm install -D eslint @typescript-eslint/{eslint-plugin,parser} eslint-plugin-{functional,import,promise,sonarjs,unicorn}
  2. Install @code-pushup/eslint-config with:

    npm install -D @code-pushup/eslint-config
  3. Add default config to extends section in your ESLint configuration file (usually called .eslintrc.json or .eslintrc.js):

    {
      "extends": ["@code-pushup"]
    }

Depending on your tech stack, you may wish to extend other configs as well (listed above). This will require installing additional peer dependencies. For more details, refer to setup docs for the configs you're interested in using.

📦 Peer dependencies

All peer dependencies used by @code-pushup/eslint-config are listed below, along with their supported versions. Only the default config's dependencies are required, others are optional.

| | NPM package | Version | Required | | :------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------- | :--------------------: | :------: | | eslint | eslint | ^8.0.0 | ✅ | | typescript | @typescript-eslint/eslint-plugin | ^6.0.0 \|\| ^7.0.0 | ✅ | | typescript | @typescript-eslint/parser | ^6.0.0 \|\| ^7.0.0 | ✅ | | lambda | eslint-plugin-functional | ^6.0.0 | ✅ | | import | eslint-plugin-import | ^2.25.0 | ✅ | | import | eslint-import-resolver-typescript | ^3.0.0 | | | promise | eslint-plugin-promise | ^6.0.0 | ✅ | | sonar | eslint-plugin-sonarjs | >=0.22.0 | ✅ | | unicorn | eslint-plugin-unicorn | >=48.0.0 | ✅ | | angular | @angular-eslint/eslint-plugin | ^17.0.0 \|\| ^18.0.0 | | | angular_component | @angular-eslint/eslint-plugin-template | ^17.0.0 \|\| ^18.0.0 | | | angular_component | @angular-eslint/template-parser | ^17.0.0 \|\| ^18.0.0 | | | graphql | @graphql-eslint/eslint-plugin | ^3.0.0 | | | ngrx | @ngrx/eslint-plugin | ^17.0.0 \|\| ^18.0.0 | | | cypress | eslint-plugin-cypress | ^2.0.0 | | | expired | eslint-plugin-deprecation | ^2.0.0 \|\| ^3.0.0 | | | jest | eslint-plugin-jest | ^27.0.0 \|\| ^28.0.0 | | | test | eslint-plugin-jest-formatting | ^3.0.0 | | | nodejs | eslint-plugin-n | ^16.0.0 | | | rxjs | eslint-plugin-rxjs | ^5.0.0 | | | storybook | eslint-plugin-storybook | >=0.6.0 | | | vitest | eslint-plugin-vitest | >=0.3.0 | |

🧪 Test overrides

For non-production code, some rules are disabled (or downgraded from errors to warnings).

This applies to file paths matching any of the following globs:

  • *.spec.?(c|m)[jt]s?(x)
  • *.test.?(c|m)[jt]s?(x)
  • **/__tests__/**/*.?(c|m)[jt]s?(x)
  • **/__mocks__/**/*.?(c|m)[jt]s?(x)
  • *.cy.?(c|m)[jt]s?(x)
  • *.stories.?(c|m)[jt]s?(x)
  • *.e2e.?(c|m)[jt]s?(x)
  • *.mock.?(c|m)[jt]s?(x)
  • *.mocks.?(c|m)[jt]s?(x)
  • **/test/**/*.?(c|m)[jt]s?(x)
  • **/tests/**/*.?(c|m)[jt]s?(x)
  • **/mocks/**/*.?(c|m)[jt]s?(x)
  • **/testing-utils/**/*.?(c|m)[jt]s?(x)
  • **/test-utils/**/*.?(c|m)[jt]s?(x)
  • **/fixtures/**/*.?(c|m)[jt]s?(x)
  • *.config.?(c|m)[jt]s
  • .prettierrc.?(c|m)[jt]s
  • codegen.?(c|m)[jt]s
  • test-setup.?(c|m)[jt]s

🫴 Contributing

Node.js installation is a prerequisite (LTS version). Install dependencies with NPM:

npm install

To execute tests:

npm test

To generate documentation:

npm run docs