@jefferson-calmon/eslint-config
v1.6.0
Published
ESLint configuration used by me in general projects.
Downloads
453
Readme
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 @jefferson-calmon/eslint-config
Inside .eslintrc.json
{
"extends": [
"@jefferson-calmon/eslint-config/next",
"next/core-web-vitals"
]
}
React (without Next.js)
Install dependencies:
npm i -D eslint @jefferson-calmon/eslint-config
Inside .eslintrc.json
{
"extends": "@jefferson-calmon/eslint-config/react"
}
Node.js
Install dependencies:
npm i -D eslint @jefferson-calmon/eslint-config
Inside .eslintrc.json
{
"extends": "@jefferson-calmon/eslint-config/node"
}