import nextEslintConfig from './eslint.next.config.mjs';
// šØ DO NOT EDIT THIS FILE MANUALLY! šØ
// Run `pnpm eslint-next/nx` to update or remove this file if all rules pass.
// Add new rules globally to the `eslint.config.js` or locally to the `eslint.next.config.js` file.
// For details, refer to: tools/scripts/eslint-next/README.md
export default [
...nextEslintConfig,
{
files: ['**/*'],
rules: {
// ā Errors: 1
'@nx/dependency-checks': 'off', // ā 1 error š ļø
},
},
];