@productminds/eslint-config
v1.0.0
Published
ESLint config
Downloads
673
Readme
ESLint config
These are settings for ESLint.
What it does
This setup lints your JavaScript code based on practices. Check the [.eslintrc.js] file to see what is included. Feel free to override the rules that make sense for you.
Installing
- In your project folder, run:
npm i -D pminds-eslint-preset # or yarn install --dev pminds-eslint-preset
npx install-peerdeps --dev pminds-eslint-preset
- You will see several dependencies were installed. Now, create (or update) a
.eslintrc
file with the following content:
{
'extends': [
'pminds'
]
}