Skip to content

Commit f92e639

Browse files
committed
chore: ignore unresolved import errors for internal packages
this will avoid pre-commit hook blocking commits when the project wasnt built
1 parent cdb926e commit f92e639

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

packages/eslint-config/index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ module.exports = {
3030
"no-var": 2,
3131
"no-duplicate-imports": ["error"],
3232
"import/no-duplicates": "off",
33+
"import/no-unresolved": [
34+
"error",
35+
{
36+
ignore: ["^@monkeytype/"],
37+
},
38+
],
3339
"no-mixed-operators": [
3440
"error",
3541
{

0 commit comments

Comments
 (0)