Skip to content

Commit

Permalink
fix(typescript): disable n/no-missing-import for TS
Browse files Browse the repository at this point in the history
  • Loading branch information
teppeis committed Sep 28, 2023
1 parent 86f6b3b commit 064b5bd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/configs/typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ export const typescript: Linter.FlatConfig = merge(moduleBase, {
{ line: { markers: ["/"] }, block: { balanced: true } },
],

// Check with TSC instead
"n/no-missing-import": 0,

// Extend ESLint rules (enabled in base config)
// NOTE: skip extending stylistic rules that are overrided by prettier
"no-invalid-this": 0,
Expand Down

0 comments on commit 064b5bd

Please sign in to comment.