mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
16 lines
286 B
JavaScript
16 lines
286 B
JavaScript
import { eslint } from '@trezor/eslint';
|
|
|
|
export default [
|
|
...eslint,
|
|
{
|
|
rules: {
|
|
'import/no-extraneous-dependencies': [
|
|
'error',
|
|
{
|
|
includeTypes: true,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
];
|