ESLint: add ignores

This commit is contained in:
vchikalkin 2024-11-26 16:53:07 +03:00
parent b1c8e8c414
commit 841e1b735b
2 changed files with 8 additions and 2 deletions

View File

@ -15,6 +15,6 @@ export const config = [
}, },
}, },
{ {
ignores: ['dist/**', '**/turbo/**'], ignores: ['dist/**', '**/turbo/**', '**/.turbo/**'],
}, },
]; ];

View File

@ -6,4 +6,10 @@ import awesome from '@vchikalkin/eslint-config-awesome';
* *
* @type {import("eslint").Linter.Config} * @type {import("eslint").Linter.Config}
* */ * */
export const nextJsConfig = [...baseConfig, ...awesome['react-typescript']]; export const nextJsConfig = [
...baseConfig,
...awesome['react-typescript'],
{
ignores: ['**/.next/**'],
},
];