Skip to content

Commit d4b626b

Browse files
committed
fix: disable stylistic rule for type generic spacing in ESLint configuration
1 parent 611f4d9 commit d4b626b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eslint.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ export default [
128128
'@typescript-eslint/no-confusing-void-expression': 'off',
129129
'no-inline-comments': 'off',
130130
'func-style': 'off',
131-
'@typescript-eslint/no-unsafe-type-assertion': 'off'
131+
'@typescript-eslint/no-unsafe-type-assertion': 'off',
132+
'@stylistic/type-generic-spacing': 'off'
132133
}
133134
}
134135
];

0 commit comments

Comments
 (0)