refactor: clippy::unreadable_literal (#974)

This commit is contained in:
EdJoPaTo 2024-03-03 10:11:50 +01:00 committed by Josh McKinney
parent a1f54de7d6
commit e3afe7c8a1
No known key found for this signature in database
GPG Key ID: 722287396A903BC5
3 changed files with 5 additions and 0 deletions

View File

@ -82,6 +82,7 @@ needless_pass_by_value = "warn"
return_self_not_must_use = "warn"
semicolon_if_nothing_returned = "warn"
trivially_copy_pass_by_ref = "warn"
unreadable_literal = "warn"
use_self = "warn"
[features]

View File

@ -1,3 +1,5 @@
#![allow(clippy::unreadable_literal)]
use std::{
fmt::{self, Debug, Display},
str::FromStr,

View File

@ -1,3 +1,5 @@
#![allow(clippy::unreadable_literal)]
//! A module for defining color palettes.
pub mod material;