From f00c6efcf9bfdf1467b5e8f83db62bbb6c2c7eb4 Mon Sep 17 00:00:00 2001 From: Juan Sebastian Montoya Date: Tue, 6 May 2025 18:41:46 -0500 Subject: [PATCH] chore: update ESLint configuration to ignore Prisma client directory - Added 'prisma/client/**' to the ignores list in the ESLint base configuration to prevent linting errors in the generated Prisma client files. --- packages/eslint-config/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config/base.js b/packages/eslint-config/base.js index b7a676c..7b23abd 100644 --- a/packages/eslint-config/base.js +++ b/packages/eslint-config/base.js @@ -30,7 +30,7 @@ export const config = tseslint.config( }, }, { - ignores: ['dist/**'], + ignores: ['dist/**', 'prisma/client/**'], }, ] );