Files
iddaai-fe/test-lint7.mjs
T
fahricansecer 71a6ed320c
Deploy Iddaai Frontend / build-and-deploy (push) Successful in 2m20s
feat: AI commentary skeleton loading - separate async endpoint
2026-05-17 16:46:53 +03:00

20 lines
512 B
JavaScript

import nextConfig from 'eslint-config-next';
import prettierConfig from 'eslint-config-prettier';
const eslintConfig = [
...nextConfig,
prettierConfig,
{
ignores: ['node_modules/**', '.next/**', 'out/**', 'build/**', 'next-env.d.ts'],
},
{
files: ['**/*.ts', '**/*.tsx'],
rules: {
'@typescript-eslint/no-empty-object-type': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
},
},
];
export default eslintConfig;