summaryrefslogtreecommitdiffstats
path: root/font/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2018-12-07 14:58:11 +0100
committerChristian Duerr <chrisduerr@users.noreply.github.com>2018-12-07 13:58:11 +0000
commita6764ba05fee785186166c0710b08eb2a5ae302c (patch)
treea892e58d33619d142a89c874884875a159db94ee /font/src/lib.rs
parentcdc22ce76a8b191bfe9dbd1ef55e24ef37ac001d (diff)
Use tool lints for clippy allow/deny lint attributes
Diffstat (limited to 'font/src/lib.rs')
-rw-r--r--font/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/lib.rs b/font/src/lib.rs
index 4c4f2653..6df96f28 100644
--- a/font/src/lib.rs
+++ b/font/src/lib.rs
@@ -18,7 +18,7 @@
//! FreeType is used on everything that's not Mac OS.
//! Eventually, ClearType support will be available for windows
-#![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)]
#[cfg(not(any(target_os = "macos", windows)))]
extern crate fontconfig;