2026-05-06 21:15:49 +01:00
|
|
|
import baseConfig from '../../eslint.config.mjs';
|
|
|
|
|
|
|
|
|
|
export default [
|
|
|
|
|
...baseConfig,
|
|
|
|
|
{
|
|
|
|
|
files: ['**/*.json'],
|
|
|
|
|
rules: {
|
|
|
|
|
'@nx/dependency-checks': [
|
|
|
|
|
'error',
|
|
|
|
|
{
|
|
|
|
|
ignoredFiles: [
|
|
|
|
|
'{projectRoot}/eslint.config.{js,cjs,mjs,ts,cts,mts}',
|
|
|
|
|
'{projectRoot}/vite.config.{js,ts,mjs,mts}',
|
2026-05-07 14:25:46 +00:00
|
|
|
'{projectRoot}/vitest.config.{js,ts,mjs,mts}',
|
2026-05-06 21:15:49 +01:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
languageOptions: {
|
|
|
|
|
parser: await import('jsonc-eslint-parser'),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
];
|