Skip to content

Commit e4b8cff

Browse files
authored
fix: disable n/no-missing-import on ts files (#25)
1 parent 5e85f73 commit e4b8cff

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/configs/node.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,12 @@ import { type ESLintConfig } from '../types'
33
export const node: ESLintConfig = {
44
plugins: ['@flaminc'],
55
extends: ['plugin:n/recommended'],
6+
overrides: [
7+
{
8+
files: ['*.ts', '*.tsx'],
9+
rules: {
10+
'n/no-missing-import': 'off',
11+
},
12+
},
13+
],
614
}

0 commit comments

Comments
 (0)