mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 04:55:22 +03:00
Skip tidy style checks for rustc_apfloat
This commit is contained in:
@@ -282,6 +282,10 @@ fn skip(path: &Path) -> bool {
|
||||
if filename.contains("ignore-tidy") {
|
||||
return;
|
||||
}
|
||||
// apfloat shouldn't be changed because of license problems
|
||||
if is_in(file, "compiler", "rustc_apfloat") {
|
||||
return;
|
||||
}
|
||||
let mut skip_cr = contains_ignore_directive(can_contain, &contents, "cr");
|
||||
let mut skip_undocumented_unsafe =
|
||||
contains_ignore_directive(can_contain, &contents, "undocumented-unsafe");
|
||||
|
||||
Reference in New Issue
Block a user