Skip to content

Commit 1ffbad5

Browse files
committed
fix(eslint): disable no-missing-import rule
1 parent 7e6ca3b commit 1ffbad5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eslint.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ export default [
3737
{ overrides: { '?': 'before', ':': 'before' } }
3838
],
3939

40-
// disabled due this rule not support workspaces
40+
// Disabled due this rule not support workspaces
4141
// reference: https://github.com/eslint-community/eslint-plugin-n/issues/209
4242
'n/no-extraneous-import': ['off'],
43-
'n/no-missing-import': ['error', { ignoreTypeImport: true }],
43+
'n/no-missing-import': ['off'],
4444

4545
'yml/indent': ['error', 3, { indicatorValueIndent: 2 }],
4646
'yml/quotes': ['error', { prefer: 'double' }]

0 commit comments

Comments
 (0)