Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NOISSUE - Update lint enforcement level based on issue #189

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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