diff --git a/Makefile b/Makefile index 53030400..deb13079 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,6 @@ format-check: lint: @rustup component add clippy 2> /dev/null - @cargo clippy + @cargo clippy --examples --tests .PHONY: all doc build check test format format-check lint check-minver diff --git a/examples/colors256.rs b/examples/colors256.rs index 274b3123..60acb88e 100644 --- a/examples/colors256.rs +++ b/examples/colors256.rs @@ -4,14 +4,14 @@ fn main() { for i in 0..=255 { print!("{:03} ", style(i).color256(i)); if i % 16 == 15 { - println!(""); + println!(); } } for i in 0..=255 { print!("{:03} ", style(i).black().on_color256(i)); if i % 16 == 15 { - println!(""); + println!(); } } }