refactor: switch lints from allow(x) to expect(x)`

This commit is contained in:
Jack Wills
2024-09-06 22:48:36 +00:00
parent 5d77f1e02a
commit 2a0ab6d81c
8 changed files with 20 additions and 28 deletions
+4 -4
View File
@@ -468,7 +468,7 @@ impl ByteStats {
}
}
#[allow(clippy::cast_precision_loss)]
#[expect(clippy::cast_precision_loss)]
impl Stats for ByteStats {
fn get_value(&self) -> f64 {
self.0 as f64
@@ -608,7 +608,7 @@ impl fmt::Display for ContainerItem {
}
impl ContainerItem {
#[allow(clippy::too_many_arguments)]
#[expect(clippy::too_many_arguments)]
/// Create a new container item
pub fn new(
created: u64,
@@ -660,7 +660,7 @@ impl ContainerItem {
}
/// Convert cpu stats into a vec for the charts function
#[allow(clippy::cast_precision_loss)]
#[expect(clippy::cast_precision_loss)]
fn get_cpu_dataset(&self) -> Vec<(f64, f64)> {
self.cpu_stats
.iter()
@@ -670,7 +670,7 @@ impl ContainerItem {
}
/// Convert mem stats into a Vec for the charts function
#[allow(clippy::cast_precision_loss)]
#[expect(clippy::cast_precision_loss)]
fn get_mem_dataset(&self) -> Vec<(f64, f64)> {
self.mem_stats
.iter()
+2 -2
View File
@@ -151,7 +151,7 @@ impl AppData {
}
/// Current time as unix timestamp
#[allow(clippy::expect_used)]
#[expect(clippy::expect_used)]
fn get_systemtime() -> u64 {
SystemTime::now()
.duration_since(UNIX_EPOCH)
@@ -933,7 +933,7 @@ impl AppData {
}
#[cfg(test)]
#[allow(clippy::unwrap_used, clippy::many_single_char_names)]
#[expect(clippy::unwrap_used)]
mod tests {
use super::*;