Skip to content

Commit a4d4306

Browse files
committed
chore(test): add tests for types
1 parent 4143126 commit a4d4306

File tree

10 files changed

+2157
-2
lines changed

10 files changed

+2157
-2
lines changed

eslint.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,16 @@ export default defineConfig(
135135
'@typescript-eslint/unbound-method': 'off',
136136
},
137137
},
138+
{
139+
files: ['test-d/**/*.test-d.ts'],
140+
rules: {
141+
'@typescript-eslint/no-floating-promises': 'off',
142+
'@typescript-eslint/no-unsafe-assignment': 'off',
143+
'@typescript-eslint/no-unsafe-member-access': 'off',
144+
'@typescript-eslint/no-unused-vars': 'off',
145+
'@typescript-eslint/unbound-method': 'off',
146+
},
147+
},
138148
{
139149
files: ['.config/*.js', '/*.js', '/.*.js', 'scripts/*.js'],
140150
languageOptions: {

0 commit comments

Comments
 (0)