mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
6954eb9580
* Add Emotion to RTK Query monitor * Add other Emotion setup * Start transition * Convert more styling to Emotion * Convert more styling to Emotion * Finish convert styling to Emotion * import type * Fix test * Remove unused styling * Remove more unused styling * Remove more unused styling * Remove jss * Cleanup * Create perfect-otters-help.md * Update perfect-otters-help.md
25 lines
594 B
JavaScript
25 lines
594 B
JavaScript
module.exports = {
|
|
extends: '../../eslintrc.js.base.json',
|
|
overrides: [
|
|
{
|
|
files: ['*.ts', '*.tsx'],
|
|
extends: '../../eslintrc.ts.react.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: true,
|
|
},
|
|
rules: {
|
|
'react/no-unknown-property': ['error', { ignore: ['css'] }],
|
|
},
|
|
},
|
|
{
|
|
files: ['test/**/*.ts', 'test/**/*.tsx'],
|
|
extends: '../../eslintrc.ts.react.jest.base.json',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.test.json'],
|
|
},
|
|
},
|
|
],
|
|
};
|