mirror of
https://github.com/chatmail/core.git
synced 2026-05-17 05:46:30 +03:00
Turn off hard errors for lints (#3441)
It happened multiple times now that I wanted to quickly execute a test, but because of a warning that had become an error, it didn't execute. This turns warnings into warnings again; our CI will fail if there is a warning, anyway (because of RUSTFLAGS: -Dwarnings)
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#![deny(unused, clippy::all)]
|
#![warn(unused, clippy::all)]
|
||||||
#![allow(
|
#![allow(
|
||||||
non_camel_case_types,
|
non_camel_case_types,
|
||||||
non_snake_case,
|
non_snake_case,
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "256"]
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
#![deny(
|
#![warn(
|
||||||
unused,
|
unused,
|
||||||
clippy::correctness,
|
clippy::correctness,
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
|
|||||||
Reference in New Issue
Block a user