Closed dagardner-nv closed 4 months ago
It would be nice to be able to specify the --glob flag multiple times with different values.
--glob
Assuming a structure similar to that presented in #254:
- content/ - a.md - b/ - b.md - c.md - d/ - d.md
Assuming I want to lint everything under content/ except for the content/b/ and content/d/ sub-directories it would be nice to do:
content/
content/b/
content/d/
vale --glob='!content/b/*' --glob='!content/d/*' ./content
Currently I have the ability to do --glob='!content/{b,d}/*' however this can get a bit unwieldy in the case of deep sub directory paths.
--glob='!content/{b,d}/*'
Closing, as I found a work-around and no longer need this feature.
Check for existing issues
Describe the feature
It would be nice to be able to specify the
--glob
flag multiple times with different values.Assuming a structure similar to that presented in #254:
Assuming I want to lint everything under
content/
except for thecontent/b/
andcontent/d/
sub-directories it would be nice to do:Currently I have the ability to do
--glob='!content/{b,d}/*'
however this can get a bit unwieldy in the case of deep sub directory paths.