Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: change ignore rules to match whole name #922

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/rules/add.js
Expand Up @@ -82,8 +82,11 @@ function add(rules, which, rule) {
return rule.replace(reEscapeChars, '\\$&')
.replace(reAsterisk, '.*');
}).join('|');
// Only match if a '\', '/' or nothing comes before item
// Additionally only match if a '\', '/' or nothing comes after the item
re = '(\\/|\\\\|^)(' + re + ')($|\\/|\\\\)';

// used for the directory matching
rules[which].re = new RegExp(re);
}
}
}