1.0.0 • Published 2 years ago
eslint-protect-me-from-my-stupidity v1.0.0
Eslint Protect Me From My Stupidity
Whats included?
- Standard config base;
- React plugin;
- React Hooks plugin;
- JSX a11y plugin;
- Prettier;
Setup
Install dependencies:
npm i -D eslint-protect-me-from-my-stupidityor
yarn add -D eslint-protect-me-from-my-stupidityInside .eslintrc.json
React (with Next.js)
{
"extends": [
"eslint-protect-me-from-my-stupidity/next",
"next/core-web-vitals"
]
}React (without Next.js)
{
"extends": "eslint-protect-me-from-my-stupidity/react"
}Node.js
{
"extends": "eslint-protect-me-from-my-stupidity/node"
}You can also use a
.eslintrc.jsinstead of JSON if you prefer.