mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
4e899d48cf
Improving the breadth of collected data, and ensuring that the collected data is more likely to be successfully reported. - Use `log` crate in more places - Hook up `log` crate to otel - Switch to process-wide otel processors - Handle places that use `process::exit` Also adds a more robust testing framework, with a deterministic tracing setting. Refs: https://github.com/denoland/deno/issues/26852
11 lines
368 B
TOML
11 lines
368 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" },
|
|
]
|
|
ignore-interior-mutability = [
|
|
"lsp_types::Uri",
|
|
]
|