mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-23 14:23:39 +08:00
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:
parent
cdb926e123
commit
f92e63975c
1 changed files with 6 additions and 0 deletions
|
@ -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",
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue