Glob pattern to filter out files not working
diemax opened this issue Β· 2 comments
diemax commented
Hello, how're you? Thanks for such a great project first of all! π
I have a question, it seems like the glob I'm passing as a parameter isn't working, I have a bunch of yaml files (.yml and .yaml extensions), and I need to filter them out, I'm trying the next command as input:
$ code-complexity . --limit 5 --filter '*.yml,*.yaml'
I've also tried:
$ code-complexity . --limit 5 --filter '*.yml'
And I'm always getting an empty result:
ββββββββ¬βββββββββββββ¬ββββββββ¬ββββββββ
β file β complexity β churn β score β
ββββββββ΄βββββββββββββ΄ββββββββ΄ββββββββ
What am I missing here? I've also tried
$ code-complexity . --limit 5 --filter '**/*.yaml'
But no luck π’
Thanks in advance! π
georgetmayorga commented
This is happening to me as wellβany resolution @diemax ?
Amirault commented
Try without quote ;)