Closed carlosasj closed 8 years ago
I think you want eclint check **
. Does that work for you?
@jedmao I forgot to include that example:
if I run eclint check **
it (also) only checks my root folder
Well, eclint just uses glob syntax, so whatever works for that. Oh! You might want to try wrapping your globs in quotes though! eclint check "**"
.
THAT'S IT!!! I didn't tried with quotes, and it worked!!! Thanks for your time! :smile:
@carlosasj I'm curious. Are you running Bash on Windows? What's your OS? I have to use quotes on Windows, but I'm wondering about other operating systems.
No, I tried on Manjaro 15 and Ubuntu 15, both with same results (same fails with the tests of the first post, and with success with your last suggestion).
I have a Django Project with all sort of files, and I want to check all my files especially for
end_of_line
. If i runeclint check **/*.html
so it find all my html files in all paths (no matter how depth it is), but I can't figure out how to check all files, without have to specify the extension.For example:
eclint check *
it only checks my root foldereclint check **/*
it only checks the files on "root" of each child-folder BUT NOT on project folder.eclint check **/**/*
it only checks the files on "root" of each child-child-folder BUT NOT on project folder nor on child-folder. (and so on)Run things like
eclint check **/*.*
have same results as above.What am I doing wrong?
.editorconfig