mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 05:36:46 +03:00
158ba2ce12
* Setup Emotion * Fix setup * Start conversion * actionList * actionListHeader * actionListRows * actionListHeaderSelector * actionListItem * actionListItemTime * actionListItemSelector * actionListItemName * actionListHeaderSearch * actionListHeaderWrapper * actionPreview * Remaining css * Format * Propagate Emotion dependencies * Fix tests * Remove styling prop * Remove jss * Remove themeState * Use color map as Emotion theme * Rework theme resolution * Inline CSS * Remove usage of className * Fix warning * Create large-spoons-yell.md
33 lines
814 B
JavaScript
33 lines
814 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: ['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'],
|
|
},
|
|
},
|
|
],
|
|
};
|