mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-05 23:15:23 +01:00
15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
import { eslint } from '@trezor/eslint';
|
|
|
|
export default [
|
|
...eslint,
|
|
{
|
|
rules: {
|
|
'react/style-prop-object': 'off',
|
|
'@typescript-eslint/no-use-before-define': 'off',
|
|
'no-continue': 'off',
|
|
'no-restricted-properties': 'off',
|
|
'@typescript-eslint/no-shadow': 'off',
|
|
},
|
|
},
|
|
];
|