diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-09 10:21:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-09 10:21:31 -0500 |
commit | 5d3d4eba398ce862aa57d5de43d17e7ae1d45d3c (patch) | |
tree | 75f528a8e1593ed46383aab2e7114445e0f8d34d /ext/node/lib.rs | |
parent | e1fb174f86adce421ee6bbce70e5dc1558c10868 (diff) |
fix(node): require of pkg json imports was broken (#22821)
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 40c9e7019..6d5a21ace 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -1,5 +1,8 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. +#![deny(clippy::print_stderr)] +#![deny(clippy::print_stdout)] + use std::collections::HashSet; use std::path::Path; use std::path::PathBuf; |