3.0.0 • Published 9 months ago

@bemobile/eslint-config v3.0.0

Weekly downloads
-
License
-
Repository
-
Last release
9 months ago

ESLint Configuration for Reactor projects

Usage

Add this to your eslint.config.js file:

import reactorPlugin from '@bemobile/eslint-config';

export default reactorPlugin;

];

You can also extend the configuration with your own rules:

```js
import { defineReactorConfig } from '@bemobile/eslint-config';

export default defineReactorConfig({
    files: ['src/**/*.ts', 'src/**/*.tsx'],
    rules: {
        'no-console': 'error',
    }
});