@pemonter/eslint-config
v2.0.10
Published
ESLint configuration.
Downloads
1,154
Readme
ESLint config
Whats included?
- Standard config base;
- React plugin;
- React Hooks plugin;
- JSX a11y plugin;
- Prettier;
Setup
- Install the dependencies
npm i -D eslint @pemonter/eslint-config- Create a
eslint.config.jsfile extending the config:
import reactEslintConfig from '@pemonter/eslint-config/react.js';
export default [
{ ignores: ['dist/**', 'node_modules/**'] },
...reactEslintConfig,
]