mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-05 23:15:23 +01:00
12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
import { eslint } from '@trezor/eslint';
|
|
|
|
export default [
|
|
...eslint,
|
|
{
|
|
rules: {
|
|
'no-console': 'off',
|
|
'@typescript-eslint/no-shadow': 'off', // Todo: shall be fixed
|
|
},
|
|
},
|
|
];
|