chore: exclude test files from eslint

This commit is contained in:
Ali BARIN
2023-10-31 11:35:53 +01:00
parent 903616bef6
commit 3b7f6740bb

View File

@@ -7,4 +7,12 @@ module.exports = {
'plugin:@typescript-eslint/recommended',
'prettier',
],
overrides: [
{
files: ['**/*.test.ts', '**/test/**/*.ts'],
rules: {
'@typescript-eslint/ban-ts-comment': ['off'],
},
},
],
};