-
-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
node/no-missing-import false positive on chalk v5 #314
Comments
There is the same problem with the import/no-unresolved rule (import-js/eslint-plugin-import#2132 / import-js/eslint-plugin-import#1810):
|
This is related to this issue in resolve. |
It seems got also has this issue. At least for me. 🤔 For now I will just ignore linting that import. (See below.) No biggie, for now. 😌 Part of my {
"rules": {
"import/no-unresolved": ["error", { "ignore": ["got"] }],
"node/no-missing-import": ["error", { "allowModules": ["got"] }]
}
} Note that |
We switched to it in eg. Try that module out and if it isn't fixed there, then open a new issue in that project. |
Looks like the thing is
chalk v5
usesexport
instead ofmain
.The text was updated successfully, but these errors were encountered: