Skip to content

Commit

Permalink
fix: disable n/no-missing-import on ts files (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
capitnflam committed Mar 17, 2024
1 parent 5e85f73 commit e4b8cff
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/configs/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,12 @@ import { type ESLintConfig } from '../types'
export const node: ESLintConfig = {
plugins: ['@flaminc'],
extends: ['plugin:n/recommended'],
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'n/no-missing-import': 'off',
},
},
],
}

0 comments on commit e4b8cff

Please sign in to comment.