We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e349703 + 62f2888 commit d7631b4Copy full SHA for d7631b4
src/ignoreFiles.js
@@ -59,7 +59,7 @@ function addIgnoreFromFile(input) {
59
}
60
61
function shouldIgnore(path) {
62
- const matched = matchers.length ? mm.any(path, matchers, { dot:true }) : false;
+ const matched = matchers.length ? mm.isMatch(path, matchers, { dot:true }) : false;
63
return matched;
64
65
0 commit comments