Refactor lint config and retry logic

This commit is contained in:
2026-05-07 14:44:59 +02:00
parent 140198177b
commit 4fabf1df98
15 changed files with 397 additions and 644 deletions
+8 -2
View File
@@ -26,7 +26,7 @@ module.exports = {
},
},
{
files: ['jest.config.js', '.eslintrc.js'],
files: ['jest.config.js', '.eslintrc.js', 'jest.setup.js'],
parserOptions: {
project: null,
},
@@ -37,5 +37,11 @@ module.exports = {
es2020: true,
jest: true,
},
ignorePatterns: ['**/__mocks__/**', '**/*.test.ts'],
ignorePatterns: [
'**/__mocks__/**',
'**/*.test.ts',
'src/**/*.js',
'jest.setup.js',
'jest.config.js',
],
};