mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 23:28:18 -05:00
4638caa740
This changes the cli to mostly use `std::fs` via `sys_traits` instead of the implemention of `deno_fs::FileSystem`.
11 lines
454 B
TOML
11 lines
454 B
TOML
disallowed-methods = [
|
|
{ path = "reqwest::Client::new", reason = "create an HttpClient via an HttpClientProvider instead" },
|
|
{ path = "std::process::exit", reason = "use deno_runtime::exit instead" },
|
|
]
|
|
disallowed-types = [
|
|
{ path = "reqwest::Client", reason = "use crate::http_util::HttpClient instead" },
|
|
{ path = "sys_traits::impls::RealSys", reason = "use crate::sys::CliSys instead" },
|
|
]
|
|
ignore-interior-mutability = [
|
|
"lsp_types::Uri",
|
|
]
|