15 lines
295 B
JavaScript
15 lines
295 B
JavaScript
import rootConfig from '../../eslint.config.mjs'
|
|
|
|
export default [
|
|
...rootConfig,
|
|
{
|
|
ignores: ['templates/**/*', 'e2e/fixtures/**/*'],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
project: ['./tsconfig.json'],
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
},
|
|
]
|