FIX: Forbid unwrap, expect and panic in the base code
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
bdd2c8fe04
commit
49ae2d8915
@@ -1,3 +1,6 @@
|
||||
#![allow(clippy::panic)]
|
||||
#![allow(clippy::expect_used)]
|
||||
|
||||
//! Produces documentation of all the implemented IronCalc functions
|
||||
//! and saves the result to functions.md
|
||||
//!
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#![allow(clippy::unwrap_used)]
|
||||
#![allow(clippy::panic)]
|
||||
|
||||
//! Tests an Excel xlsx file.
|
||||
//! Returns a list of differences in json format.
|
||||
//! Saves an IronCalc version
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#![allow(clippy::unwrap_used)]
|
||||
#![allow(clippy::panic)]
|
||||
|
||||
//! Tests an Excel xlsx file.
|
||||
//! Returns a list of differences in json format.
|
||||
//! Saves an IronCalc version
|
||||
|
||||
Reference in New Issue
Block a user