ESLint config for Beemo projects.
npm install @beemo/config-eslint


An official Beemo ESLint config based on
eslint-config-beemo.
``bash`
yarn install --dev eslint @beemo/core @beemo/driver-eslint @beemo/config-eslint
Create a configs/eslint.ts file in your Beemo configuration module that re-exports this config.
`ts`
export { default } from '@beemo/config-eslint';
The following Beemo settings can be defined and will be passed to the config.
- node (boolean) - Denote as a Node.js project. Defaults to false.react
- (boolean | classic | automatic) - Enable React rules. Defaults to false.
`ts``
export default {
module: '
drivers: ['eslint'],
settings: {
react: 'automatic',
},
};