mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-29 05:51:57 +00:00
refactor: clippy::unreadable_literal (#974)
This commit is contained in:
parent
a1f54de7d6
commit
e3afe7c8a1
@ -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]
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![allow(clippy::unreadable_literal)]
|
||||
|
||||
use std::{
|
||||
fmt::{self, Debug, Display},
|
||||
str::FromStr,
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![allow(clippy::unreadable_literal)]
|
||||
|
||||
//! A module for defining color palettes.
|
||||
|
||||
pub mod material;
|
||||
|
Loading…
x
Reference in New Issue
Block a user