chore: update ESLint configuration to ignore Prisma client directory
All checks were successful
Lint and Check Types / Validations (push) Successful in 56s

- Added 'prisma/client/**' to the ignores list in the ESLint base configuration to prevent linting errors in the generated Prisma client files.
This commit is contained in:
Juan Sebastián Montoya 2025-05-06 18:41:46 -05:00
parent 7ed7461a2b
commit f00c6efcf9

View file

@ -30,7 +30,7 @@ export const config = tseslint.config(
},
},
{
ignores: ['dist/**'],
ignores: ['dist/**', 'prisma/client/**'],
},
]
);