1.1.1 • Published 10 months ago

@cp2ejr/eslint-config v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

CP2eJr ESLint config

Whats included?

  • Standard config base
  • React plugin
  • React Hooks plugin
  • JSX a11y plugin
  • Prettier

Setup

React (with Next.js)

Install dependencies:

npm i -D eslint @cp2ejr/eslint-config

Inside .eslintrc.json

{
  "extends": [
    "@cp2ejr/eslint-config/next", 
    "next/core-web-vitals"
  ]
}

React (without Next.js)

Install dependencies:

npm i -D eslint @cp2ejr/eslint-config

Inside .eslintrc.json

{
  "extends": "@cp2ejr/eslint-config/react"
}

Node.js

Install dependencies:

npm i -D eslint @cp2ejr/eslint-config

Inside .eslintrc.json

{
  "extends": "@cp2ejr/eslint-config/node"
}