chore: update ESLint configuration to ignore Prisma client directory
All checks were successful
Lint and Check Types / Validations (push) Successful in 56s
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:
parent
7ed7461a2b
commit
f00c6efcf9
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ export const config = tseslint.config(
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ignores: ['dist/**'],
|
ignores: ['dist/**', 'prisma/client/**'],
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue