Skip to content

Commit

Permalink
build: disable eslint import/no-unresolved rule
Browse files Browse the repository at this point in the history
The rule has a lot of false positives with monorepos.
Ts compiler will complain about unresolved imports anyway, so we can safely ignore them here.
  • Loading branch information
Loxeris committed May 24, 2024
1 parent fca9fd2 commit 3f0ec58
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/diracx-web-components/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"rules": {
"import/order": ["error"],
"import/no-unused-modules": ["error"],
"import/no-useless-path-segments": ["error"]
"import/no-useless-path-segments": ["error"],
"import/no-unresolved": "off"
}
}

0 comments on commit 3f0ec58

Please sign in to comment.