Skip to content

Commit

Permalink
fix: make clippy happy (workaround to be fixed)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ma committed Sep 3, 2024
1 parent f0617f5 commit ac1fcf1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions generator/rs/lib.tmpl.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ac1fcf1

Please sign in to comment.