Skip to content

Commit

Permalink
build: disable import/no-unresolved rule
Browse files Browse the repository at this point in the history
  • Loading branch information
mizdra committed Dec 28, 2021
1 parent b8cfc2e commit 9e91c7c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ module.exports = {
'@typescript-eslint/no-unsafe-return': 'off',
// 煩すぎるので off
'@typescript-eslint/no-unsafe-argument': 'off',
// disable because this rule do not support ESM in TypeScript.
// ref: https://github.com/import-js/eslint-plugin-import/issues/2170
'import/no-unresolved': 'off',
},
},
// for test
Expand Down

0 comments on commit 9e91c7c

Please sign in to comment.