-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
improve glob support #1117
Comments
I suppose we should consider this since it's probably surprising to most users. @Flet do you have thoughts about the viability of adding this to |
Yeah this makes sense to me! |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
Supporting globs including recursive ones like |
This will be fixed in |
Let's say I have a folder structure like this:
If I run
eslint src
with theeslint-config-standard
setup, it works as expected:But if I run
standard src
, I get no output. To get it to work, I would need to dostandard src/*.js
instead. Is it possible to add support for this instandard
as well?I think this is where
eslint
is doing this:https://github.com/eslint/eslint/blob/b32d1f48cecc1eecd1352a978d7b393ad047337c/lib/util/glob-util.js#L25-L73
The text was updated successfully, but these errors were encountered: