18 lines
380 B
JavaScript
18 lines
380 B
JavaScript
import rootConfig from '../../eslint.config.mjs'
|
|
|
|
export default [
|
|
...rootConfig,
|
|
{
|
|
ignores: ['templates/**/*', 'e2e/fixtures/**/*'],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
project: ['./tsconfig.json'],
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/explicit-member-accessibility': 'off',
|
|
},
|
|
},
|
|
]
|