Skip to content

Commit 49be8ef

Browse files
committed
reorder excludes
1 parent b834190 commit 49be8ef

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tools/list-contributors/main.rs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,14 +143,15 @@ pub fn file_contributors(
143143
// This is just a grab-bag of filters for some changes that might be sweeping refactorings.
144144
static EXCLUDES: SyncLazy<RegexSet> = SyncLazy::new(|| RegexSet::new(&[
145145
"(?i)rustfmt",
146-
"(?i)doc",
147146
"(?i)tidy",
148-
"(?i)mv std libs to library/",
149-
"(?i)deny unsafe ops in unsafe fns",
150-
"(?i)unsafe_op_in_unsafe_fn",
147+
"(?i)doc",
151148
"(?i)merge",
152149
"(?i)split",
153150
"(?i)move",
151+
"(?i)refactor",
152+
"(?i)mv std libs to library/",
153+
"(?i)deny unsafe ops in unsafe fns",
154+
"(?i)unsafe_op_in_unsafe_fn",
154155
]).expect("failed to compile regex set"));
155156

156157
/// Run `git log` on a given file and return a map of each author with the number of commits made.

0 commit comments

Comments
 (0)