-
-
Notifications
You must be signed in to change notification settings - Fork 56
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
is it possible to run kondo recursively? #51
Comments
Kondo is recursive by default :) It uses https://github.com/BurntSushi/walkdir internally. If you've found a case where it isn't it could be a bug, do you have more information? |
Cool. I didn't realize that at first because running it just deleted one folder at the top level, so I assume it's not recursive. Thank you for the clarification! |
There is a limitation currently where children of a directory that is identified as a project won't be searched. #29 Lines 244 to 245 in 963e12f
The original reason for it was tools like npm nest projects within projects. So kondo would detect the top level project, then return another thousand results of all of it's dependencies inside |
I would like to run kondo in all directories below a directory (say
dir
). Is there something likekondo -r dir
?The text was updated successfully, but these errors were encountered: