Closed Arrowana closed 1 year ago
interface IOptions extends minimatch.IOptions { ... dot?: boolean | undefined;
Allow patterns to match filenames starting with a period, even if the pattern does not explicitly have a period in that spot. Note that by default, 'a/**' + '/b' will not match a/.d/b, unless dot is set.
Allow patterns to match filenames starting with a period, even if the pattern does not explicitly have a period in that spot.
Note that by default, 'a/**' + '/b' will not match a/.d/b, unless dot is set.
Now we're cooking! Thanks!