insider
insider copied to clipboard
More information about -exclude
Hey! I have some difficulties in using -exclude flag.
When i go like insider --tech javascript --target . -exclude node_modules it works great but however i try to exclude for example results form CSS files anywhere in the projects how to make it work?
-exclude *.css not work
-exclude /.css doesn't work either
Hi @siewer, the --exclude flag should be a valid Go regex. So, in case to ignore css files you can use like this --exclude .css.
I agree with you that maybe we should add more examples on Example of use section on the cli.
It should be -exclude .*\.css