diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2018-07-01 22:20:29 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-07-01 20:20:29 +0000 |
commit | 985ba306c78857e07f3f267ab954ad069d30a465 (patch) | |
tree | b953bb0f74620adeac7771c788f874aae872cc87 /src/lib.rs | |
parent | 12f952df42941be8a94a90f9a029e041c9281142 (diff) | |
download | alacritty-985ba306c78857e07f3f267ab954ad069d30a465.tar.gz alacritty-985ba306c78857e07f3f267ab954ad069d30a465.zip |
Remove unnecessary clippy lint annotations
We moved to "cargo clippy" in 5ba34d4f9766a55a06ed5e3e44cc384af1b09f65 and
removing the clippy lint annotations in `src/lib.rs` does not cause any additional warnings.
This also changes `cargo clippy` to use the flags required for checking integration tests.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -110,9 +110,6 @@ impl Mul<f32> for Rgb { } -#[cfg_attr(feature = "clippy", allow(too_many_arguments))] -#[cfg_attr(feature = "clippy", allow(doc_markdown))] -#[cfg_attr(feature = "clippy", allow(unreadable_literal))] #[allow(unused_mut)] pub mod gl { #![allow(non_upper_case_globals)] |