diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2018-12-07 14:58:11 +0100 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-12-07 13:58:11 +0000 |
commit | a6764ba05fee785186166c0710b08eb2a5ae302c (patch) | |
tree | a892e58d33619d142a89c874884875a159db94ee /copypasta | |
parent | cdc22ce76a8b191bfe9dbd1ef55e24ef37ac001d (diff) | |
download | alacritty-a6764ba05fee785186166c0710b08eb2a5ae302c.tar.gz alacritty-a6764ba05fee785186166c0710b08eb2a5ae302c.zip |
Use tool lints for clippy allow/deny lint attributes
Diffstat (limited to 'copypasta')
-rw-r--r-- | copypasta/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/copypasta/src/lib.rs b/copypasta/src/lib.rs index cb2ebef8..796c98df 100644 --- a/copypasta/src/lib.rs +++ b/copypasta/src/lib.rs @@ -1,6 +1,6 @@ //! A cross-platform clipboard library -#![cfg_attr(feature = "cargo-clippy", deny(clippy, if_not_else, enum_glob_use, wrong_pub_self_convention))] +#![deny(clippy::all, clippy::if_not_else, clippy::enum_glob_use, clippy::wrong_pub_self_convention)] // This has to be here due to macro_use #[cfg(target_os = "macos")] |