Skip to content

Commit 97a39b7

Browse files
committed
Disable buggy no-redundant-type-constituents rule
1 parent b7c5c2f commit 97a39b7

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

eslint.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ export default defineConfig(
4646
"@typescript-eslint/explicit-module-boundary-types": "error",
4747
// https://github.com/typescript-eslint/typescript-eslint/issues/8113#issuecomment-2334943836
4848
"@typescript-eslint/no-invalid-void-type": "off",
49+
50+
// It seems its buggy, disable it for now.
51+
"@typescript-eslint/no-redundant-type-constituents": "off",
52+
4953
"@typescript-eslint/no-empty-object-type": "off",
5054
"@typescript-eslint/restrict-template-expressions": "off",
5155
"@typescript-eslint/no-unused-vars": [

0 commit comments

Comments
 (0)