mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-02-20 00:33:07 +01:00
17 lines
357 B
JavaScript
17 lines
357 B
JavaScript
import { eslint, playwrightEslintFlat } from '@trezor/eslint';
|
|
|
|
export default [
|
|
...eslint,
|
|
{
|
|
ignores: ['**/playwright-report/', '**/test-results/'],
|
|
},
|
|
{
|
|
files: ['**/scripts/**'],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'import/no-default-export': 'off',
|
|
},
|
|
},
|
|
playwrightEslintFlat,
|
|
];
|