Skip to content

Commit 0bf3c3b

Browse files
Merge pull request #1312 from skaut/dependabot/npm_and_yarn/typescript-eslint-8.12.2
Bump typescript-eslint from 8.8.1 to 8.12.2
2 parents b414dda + 8aadda1 commit 0bf3c3b

File tree

3 files changed

+56
-192
lines changed

3 files changed

+56
-192
lines changed

eslint.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,12 @@ export default tseslint.config(
169169
},
170170
},
171171
{
172-
extends: [jest.recommended, jest.style],
172+
...jest.configs["flat/recommended"],
173+
...jest.configs["flat/style"],
173174
files: ["__tests__/**/*.test.ts", "__tests__/**/*.json"],
174175
rules: {
176+
...jest.configs["flat/recommended"].rules,
177+
...jest.configs["flat/style"].rules,
175178
"jest/consistent-test-it": ["error", { withinDescribe: "test" }],
176179
"jest/no-conditional-in-test": "error",
177180
"jest/no-confusing-set-timeout": "error",
@@ -208,6 +211,7 @@ export default tseslint.config(
208211
rules: {
209212
"@typescript-eslint/no-unsafe-argument": "off",
210213
"@typescript-eslint/no-unsafe-assignment": "off",
214+
"@typescript-eslint/no-unsafe-member-access": "off",
211215
},
212216
},
213217
);

0 commit comments

Comments
 (0)