summaryrefslogtreecommitdiff
path: root/runtime/clippy.toml
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/clippy.toml')
-rw-r--r--runtime/clippy.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/clippy.toml b/runtime/clippy.toml
index 53676a90e..79e6bbd08 100644
--- a/runtime/clippy.toml
+++ b/runtime/clippy.toml
@@ -42,4 +42,5 @@ disallowed-methods = [
{ path = "std::fs::write", reason = "File system operations should be done using FileSystem trait" },
{ path = "std::path::Path::canonicalize", reason = "File system operations should be done using FileSystem trait" },
{ path = "std::path::Path::exists", reason = "File system operations should be done using FileSystem trait" },
+ { path = "std::process::exit", reason = "use deno_runtime::exit instead" },
]