redux-devtools/packages/react-base16-styling/.eslintrc.js
Nathan Bierema c68b34e4b8
refactor(react-base16-styling)!: convert react-base16-styling to TypeScript (#592)
BREAKING CHANGES: Switch from pure-color to color which could change behavior of string parsing or results. No API changes.
2020-08-16 09:00:54 -04:00

22 lines
486 B
JavaScript

module.exports = {
extends: '../../.eslintrc',
overrides: [
{
files: ['*.ts', '*.tsx'],
extends: '../../eslintrc.ts.base.json',
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
},
{
files: ['test/*.ts', 'test/*.tsx'],
extends: '../../eslintrc.ts.jest.base.json',
parserOptions: {
tsconfigRootDir: __dirname,
project: ['./test/tsconfig.json'],
},
},
],
};