Skip to content

Commit

Permalink
fix: deactivate n/no-missing-import for ts-files
Browse files Browse the repository at this point in the history
  • Loading branch information
voxpelli committed Jun 20, 2024
1 parent 04efee0 commit 5abfa8f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions base-configs/additional-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ const adaptedNodeRules = [
'n/no-sync': 'error',
},
},
{
name: '@voxpelli/additional/node/ts',
files: ['**/*.ts'],
rules: {
// TODO: Remove when *.js files can be properly resolved from *.d.ts
'n/no-missing-import': 'off',
},
},
];

/** @satisfies {import('eslint').Linter.FlatConfig[]} */
Expand Down

0 comments on commit 5abfa8f

Please sign in to comment.