mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 06:07:30 +03:00
13 lines
386 B
JavaScript
13 lines
386 B
JavaScript
|
import eslintJs from '../../eslint.js.config.base.mjs';
|
||
|
import eslintTsReact from '../../eslint.ts.react.config.base.mjs';
|
||
|
import eslintTsReactJest from '../../eslint.ts.react.jest.config.base.mjs';
|
||
|
|
||
|
export default [
|
||
|
...eslintJs,
|
||
|
...eslintTsReact(import.meta.dirname),
|
||
|
...eslintTsReactJest(import.meta.dirname),
|
||
|
{
|
||
|
ignores: ['.storybook', 'lib', 'storybook-static'],
|
||
|
},
|
||
|
];
|