diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2018-07-03 00:11:24 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-07-02 22:11:24 +0000 |
commit | 21eb50aa50586ae95d553ae097cb1199334ac1c0 (patch) | |
tree | 85eca46c21a4e440c8c528c5efafc8c8162b8ec7 /copypasta | |
parent | 985ba306c78857e07f3f267ab954ad069d30a465 (diff) | |
download | alacritty-21eb50aa50586ae95d553ae097cb1199334ac1c0.tar.gz alacritty-21eb50aa50586ae95d553ae097cb1199334ac1c0.zip |
Enable clippy in font/copypasta crates
Enabled clippy in the sub-crates font and copypasta. All issues
that were discovered by this change have also been fixed.
Diffstat (limited to 'copypasta')
-rw-r--r-- | copypasta/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/copypasta/src/lib.rs b/copypasta/src/lib.rs index 2857ce82..f0b3c53e 100644 --- a/copypasta/src/lib.rs +++ b/copypasta/src/lib.rs @@ -1,5 +1,7 @@ //! A cross-platform clipboard library +#![cfg_attr(feature = "cargo-clippy", deny(clippy, if_not_else, enum_glob_use, wrong_pub_self_convention))] + // This has to be here due to macro_use #[cfg(target_os = "macos")] #[macro_use] extern crate objc; |