-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Unresolved extensions #296
Conversation
518d80f
to
779c0ea
Compare
Seeing no feedback (what, not an exciting PR? 😉) I'll probably merge this tomorrow or Thursday. |
It's not a part of the repo I'm familiar with (like most of it), but I'll try and take a look tonight ;) |
Thanks for fixing this @benmosher. Code LGTM. |
I'm discovering the rule here, but isn't disallowing I would suggest removing it the extension check for packages. And if you're doing that, then you can have an early exit for external type imports, just like for builtins. I know it's not necessarily in the scope, so this can be discussed later, but wanted to mention it here as it might simplify things a bit. |
What is the expected behavior if you do |
Re: express/index.js: that is the spec for always mode, at the moment. I also think it would make sense to allow externals, at least in some mode, but I figured we could let someone ask for that. Re: non-package.js: if it resolved to a file (mysteriously), and the file was non-package.js, it would not report. If it did not resolve, it also wouldn't report. Oh, I see now... Yeah, I think there is a bug there. If it resolved to some index.js, it might not report, but I think it should according to the spec. |
Fixes #295 and #271.
Actually made the rule work report on violations in spite of file resolution; it will use the source path if the file doesn't exist. I think this is probably ideal, in contrast to other rules that ignore unresolved files (in spite of my previous comments).
I also added an early exit for builtins (i.e.
path
) regardless of the options, built on @jfmengels'importType
infrastructure. I figure even withalways
mode enabled, it should be possible to import from core modules.Also, note that
extension
is""
when the provided path isnull
or has no extension, thus the added!extension
check for the extension-enforcing branch.Feedback from @vvo, @lo1tuma, @sindresorhus, @jfmengels appreciated.