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-shaper/eslint-config

v2.0.0

Published

Code Shaper ESLint configuration

Downloads

12

Readme

eslint-config

This package publishes 4 shared ESLint configurations:

  1. @code-shaper/eslint-config: Default configuration pointing to @code-shaper/eslint-config-lenient
  2. @code-shaper/eslint-config-lenient: A lenient configuration for code bases that don't follow very opinionated coding conventions
  3. @code-shaper/eslint-config-strict: A strict configuration for code bases that follow very opinionated coding conventions
  4. @code-shaper/eslint-config/strict-react: The strict configuration + additional rules for React.

Installation

npm install -D @code-shaper/eslint-config

Then modify your .eslintrc.js to extend one of the above configurations, e.g.

module.exports = {
  root: true,
  env: { node: true },
  extends: ['@code-shaper/eslint-config/strict-react'],
};

Add the following dependencies to your package.json:

{
  "dependencies": {
    "@typescript-eslint/eslint-plugin": "^8.*",
    "eslint": "^8.*",
    "eslint-config-prettier": "^9.*",
    "eslint-import-resolver-typescript": "^3.*",
    "eslint-plugin-eslint-comments": "^3.*",
    "eslint-plugin-import": "^2.*",
    "eslint-plugin-jest": "^28.*",
    "eslint-plugin-jest-dom": "^5.*",
    "eslint-plugin-jsx-a11y": "^6.*",
    "eslint-plugin-only-error": "^1.*",
    "eslint-plugin-promise": "^7.*",
    "eslint-plugin-react": "^7.*",
    "eslint-plugin-react-hooks": "^4.*",
    "eslint-plugin-regexp": "^2.*",
    "eslint-plugin-tailwindcss": "^3.*",
    "eslint-plugin-testing-library": "^6.*"
  }
}

Note: If you are using eslint-config-next version 14, you may have to downgrade @typescript-eslint/eslint-plugin to version 7. eslint-config-next does not support @typescript-eslint/eslint-plugin version 8 yet.

Plugins

This config pulls in the following eslint rules/plugins. In addition to these plugins, there are a few customizations that have been made to select individual rules. These customizations and rules are clearly marked in the source code.

eslint

Applies the following rules to all JavaScript and TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-typescript

Applies the following rules to all Typescript files:

  • all recommended rules
  • all recommended-requiring-type-checking rules
  • all strict rules
  • all automatically fixable rules

eslint-plugin-import

Applies the following rules to all JavaScript and TypeScript files:

  • all recommended rules
  • all typescript rules (only applied to TypeScript files)
  • all react rules (only applied to TypeScript files)
  • all automatically fixable rules

eslint-plugin-promise

Applies the following rules to all JavaScript and TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-regexp

Applies the following rules to all JavaScript and TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-eslint-comments

Applies the following rules to all JavaScript and TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-jsx-a11y

Applies the following rules to all TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-react

Applies the following rules to all TypeScript files:

  • all recommended rules
  • all jsx-runtime rules
  • all automatically fixable rules

eslint-plugin-react-hooks

Applies the following rules to all TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-jest

Applies the following rules to all JavaScript and TypeScript test files:

  • all recommended rules
  • all style rules
  • all automatically fixable rules

eslint-plugin-jest-dom

Applies the following rules to all JavaScript and TypeScript test files:

  • all recommended rules
  • all automatically fixable rules

eslint-plugin-testing-library

Applies the following rules to all JavaScript and TypeScript test files:

  • all react rules
  • all automatically fixable rules

eslint-plugin-tailwindcss

Applies the following rules to all TypeScript files:

  • all recommended rules
  • all automatically fixable rules

eslint-config-prettier

Applies the eslint-config-prettier plugin to disable all rules that would be covered by or would conflict with prettier. It is recommended to run prettier separately, after running eslint.

eslint-plugin-only-error

Applies the only-error plugin to treat all lint warnings as errors.