19 lines
382 B
JavaScript
19 lines
382 B
JavaScript
|
// @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',
|
||
|
},
|
||
|
},
|
||
|
]
|