aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/linters/no_banned_use.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/linters/no_banned_use.rb b/scripts/linters/no_banned_use.rb
index 311d03c3..74e50d06 100644
--- a/scripts/linters/no_banned_use.rb
+++ b/scripts/linters/no_banned_use.rb
@@ -1,9 +1,11 @@
BANNED_USE_PATHS = %w[
anyhow::Result
std::any::Any
+ std::cell::RefCell
std::io::Read
std::io::Write
std::process::Command
+ std::rc::Rc
].freeze
def no_banned_use(root_dir, excludes = [])