chore: ignore unresolved import errors for internal packages

this will avoid pre-commit hook blocking commits when the project wasnt built
This commit is contained in:
Miodec 2024-07-28 17:33:49 +02:00
parent cdb926e123
commit f92e63975c

View file

@ -30,6 +30,12 @@ module.exports = {
"no-var": 2,
"no-duplicate-imports": ["error"],
"import/no-duplicates": "off",
"import/no-unresolved": [
"error",
{
ignore: ["^@monkeytype/"],
},
],
"no-mixed-operators": [
"error",
{