We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rustc_apfloat
1 parent a49f571 commit 7d59c0cCopy full SHA for 7d59c0c
src/tools/tidy/src/style.rs
@@ -282,6 +282,10 @@ pub fn check(path: &Path, bad: &mut bool) {
282
if filename.contains("ignore-tidy") {
283
return;
284
}
285
+ // apfloat shouldn't be changed because of license problems
286
+ if is_in(file, "compiler", "rustc_apfloat") {
287
+ return;
288
+ }
289
let mut skip_cr = contains_ignore_directive(can_contain, &contents, "cr");
290
let mut skip_undocumented_unsafe =
291
contains_ignore_directive(can_contain, &contents, "undocumented-unsafe");
0 commit comments