chore: Allow warnings during development

This commit is contained in:
Ed Page 2022-06-08 17:10:09 -05:00
parent 2286d5f1d0
commit dca10d17db

View file

@ -1,7 +1,7 @@
// For various reasons, some idioms are still allow'ed, but we would like to
// test and enforce them.
#![warn(rust_2018_idioms)]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
// Due to some of the default clippy lints being somewhat subjective and not
// necessarily an improvement, we prefer to not use them at this time.
#![allow(clippy::all)]