File size: 382 Bytes
21c8bff |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
// @ts-check
import rootConfig from '../../eslint.config.js'
export default [
...rootConfig,
{
rules: {
'cspell/spellchecker': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off',
'import/no-duplicates': 'off',
'import/no-unresolved': 'off',
'import/order': 'off',
'no-shadow': 'off',
'sort-imports': 'off',
},
},
]
|