Remove allow(doc_markdown) in excessive_precision.rs
This commit is contained in:
parent
041c49c1ed
commit
a73d051227
@ -109,10 +109,9 @@ fn check(&self, sym: Symbol, fty: FloatTy) -> Option<String> {
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::doc_markdown)]
|
||||
/// Should we exclude the float because it has a `.0` or `.` suffix
|
||||
/// Ex 1_000_000_000.0
|
||||
/// Ex 1_000_000_000.
|
||||
/// Ex `1_000_000_000.0`
|
||||
/// Ex `1_000_000_000.`
|
||||
fn dot_zero_exclusion(s: &str) -> bool {
|
||||
if let Some(after_dec) = s.split('.').nth(1) {
|
||||
let mut decpart = after_dec.chars().take_while(|c| *c != 'e' || *c != 'E');
|
||||
|
Loading…
Reference in New Issue
Block a user