-
Notifications
You must be signed in to change notification settings - Fork 60
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
Path ** does not recurse directories #48
Comments
I agree with that what you suggested is the correct behavior for It also might be a problem with your shell, since leasot uses Can you try it with the following syntax: |
Let me know if I can help further |
The issue still remains:
All of the above still do not recurse through sub-directories |
I can confirm it does infact work properly but quotes |
yup I missed this too but this gets me back to my recent issue #50 about excluding directories because if I try to do this from the root of my project it also searches node_modules until it crashes. |
I would expect
leasot src/**/*.js
to recurse directories withinsrc
and parse all js filesExample directory structure:
Correct Cases
Running
leasot src/*.js
parses files insrc
only, i.e.todo-root.js
Running
leasot src/*/*/*.js
parses files infolderC
onlyIncorrect Cases
Running
leasot src/**/*.js
parses files infolderA
and the root offolderB
only (It is missingtodo-root.js
as well as the files infolderC
The text was updated successfully, but these errors were encountered: