Skip to content

Commit

Permalink
Merge pull request #189 from jmcconnell26/NOISSUE-UpdateLintEnforcement
Browse files Browse the repository at this point in the history
NOISSUE - Update lint enforcement level based on issue
  • Loading branch information
anderejd authored Feb 17, 2021
2 parents 22ab44f + 7feb909 commit f2d6c32
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cargo-geiger-serde/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! This crate provides definitions to serialize the unsafety report.

#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

mod package_id;
mod report;
Expand Down
2 changes: 1 addition & 1 deletion cargo-geiger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![deny(clippy::cargo)]
#![deny(clippy::doc_markdown)]
#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

/// Argument parsing
pub mod args;
Expand Down
2 changes: 1 addition & 1 deletion cargo-geiger/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![deny(clippy::cargo)]
#![deny(clippy::doc_markdown)]
#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

extern crate cargo;
extern crate colored;
Expand Down
2 changes: 1 addition & 1 deletion geiger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//! from `cargo`.

#![forbid(unsafe_code)]
#![forbid(warnings)]
#![deny(warnings)]

pub mod find;
mod geiger_syn_visitor;
Expand Down

0 comments on commit f2d6c32

Please sign in to comment.