Fix clippy complaining when used instead of cargo check with RA

trunk
ondra05 2022-11-04 00:58:23 +01:00
parent 8ef7118dc1
commit 1a9cf6c2a6
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@
//! <https://git.ablecorp.us/AbleScript/able-script> for more
//! information.
#![forbid(unsafe_code, clippy::unwrap_used)]
#![forbid(unsafe_code)]
#![cfg_attr(not(test), forbid(clippy::unwrap_used))]
pub mod ast;
pub mod error;