2024-06-03 17:17:08 -04:00
|
|
|
disallowed-methods = [
|
|
|
|
{ path = "reqwest::Client::new", reason = "create an HttpClient via an HttpClientProvider instead" },
|
2024-11-14 07:16:28 -05:00
|
|
|
{ path = "std::process::exit", reason = "use deno_runtime::exit instead" },
|
2024-06-03 17:17:08 -04:00
|
|
|
]
|
|
|
|
disallowed-types = [
|
|
|
|
{ path = "reqwest::Client", reason = "use crate::http_util::HttpClient instead" },
|
2024-12-31 11:29:07 -05:00
|
|
|
{ path = "sys_traits::impls::RealSys", reason = "use crate::sys::CliSys instead" },
|
2024-06-03 17:17:08 -04:00
|
|
|
]
|
2024-08-23 20:21:21 -04:00
|
|
|
ignore-interior-mutability = [
|
|
|
|
"lsp_types::Uri",
|
|
|
|
]
|