diff --git a/generator/rs/lib.tmpl.rs b/generator/rs/lib.tmpl.rs index 4340668..aa4b5f2 100644 --- a/generator/rs/lib.tmpl.rs +++ b/generator/rs/lib.tmpl.rs @@ -1,4 +1,6 @@ #![deny(clippy::all)] +// @todo - properly fix this clippy issue +#![allow(clippy::zero_repeat_side_effects)] use napi::{Env, JsObject, Result}; use napi_derive::module_exports; diff --git a/src/lib.rs b/src/lib.rs index 6f48649..a891cc2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,6 +18,8 @@ // -------------------------------------------------------------------------- // #![deny(clippy::all)] +// @todo - properly fix this clippy issue +#![allow(clippy::zero_repeat_side_effects)] use napi::{Env, JsObject, Result}; use napi_derive::module_exports;