Reputation: 8582
Hey I would like to ignore cache directories and the sub-tree of them everywhere. I tried the following:
syntax: glob
**/cache/**
It seems it is not the right thing to do. Would somebody shed some light?
Upvotes: 1
Views: 329
Reputation: 54021
If you're wanting to ignore everything in and below the cache folder the following should work:
syntax: glob
cache/**
Upvotes: 3