mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
c50bdc02e8
* chore(deps): update typescript-eslint monorepo to v6 * Fix msw * Initial updates * Disable new lint rules --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
38 lines
950 B
JavaScript
38 lines
950 B
JavaScript
module.exports = {
|
|
extends: '../../eslintrc.js.base.json',
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: true,
|
|
},
|
|
},
|
|
{
|
|
files: ['demo/**/*.ts', 'demo/**/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./demo/tsconfig.json'],
|
|
},
|
|
},
|
|
{
|
|
files: ['demo/config/webpack.config.ts'],
|
|
extends: '../../eslintrc.ts.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./demo/config/tsconfig.json'],
|
|
},
|
|
},
|
|
{
|
|
files: ['test/**/*.ts', 'test/**/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.jest.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.test.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|