mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
727d753081
* stash * and those * stash * stash * stash * stash * tests * fix errors * revert * stash * fix lint * prettier
30 lines
754 B
JavaScript
30 lines
754 B
JavaScript
module.exports = {
|
|
extends: '../../.eslintrc',
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
},
|
|
{
|
|
files: ['tests/*.ts', 'tests/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.jest.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tests/tsconfig.json'],
|
|
},
|
|
},
|
|
{
|
|
files: ['.storybook/tests/*.ts', '.storybook/tests/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.jest.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./.storybook/tsconfig.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|