- Standard config base;
- React plugin;
- React Hooks plugin;
- JSX a11y plugin;
- Prettier;
- 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,
]