Skip to content

Commit

Permalink
Move magic commands to below documentation, add a few more deny things
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed Nov 22, 2018
1 parent f4855bf commit ce0b767
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
#![cfg_attr(feature = "cargo-clippy", deny(clippy))]
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/git-anger-management/0.5.1")]
//! # git-anger-management
//!
//! ## What
Expand Down Expand Up @@ -72,6 +66,17 @@
//! ```
//!
//! Or look at the help by running `git anger-management -h`.
#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
#![cfg_attr(feature = "cargo-clippy", deny(clippy))]
#![forbid(unsafe_code)]
#![deny(
missing_docs,
missing_debug_implementations,
missing_copy_implementations,
trivial_casts,
unused_import_braces,
unused_allocation
)]

#[macro_use]
extern crate lazy_static;
Expand Down

0 comments on commit ce0b767

Please sign in to comment.