File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -143,14 +143,15 @@ pub fn file_contributors(
143
143
// This is just a grab-bag of filters for some changes that might be sweeping refactorings.
144
144
static EXCLUDES : SyncLazy < RegexSet > = SyncLazy :: new ( || RegexSet :: new ( & [
145
145
"(?i)rustfmt" ,
146
- "(?i)doc" ,
147
146
"(?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" ,
151
148
"(?i)merge" ,
152
149
"(?i)split" ,
153
150
"(?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" ,
154
155
] ) . expect ( "failed to compile regex set" ) ) ;
155
156
156
157
/// Run `git log` on a given file and return a map of each author with the number of commits made.
You can’t perform that action at this time.
0 commit comments