mirror of
https://github.com/biomejs/biome.git
synced 2025-12-23 08:21:13 +00:00
7 lines
508 B
TOML
7 lines
508 B
TOML
allow-dbg-in-tests = true
|
|
|
|
disallowed-methods = [
|
|
{ path = "str::to_ascii_lowercase", reason = "Avoid memory allocation. Use `biome_string_case::StrOnlyExtension::to_ascii_lowercase_cow` instead." },
|
|
{ path = "std::ffi::OsStr::to_ascii_lowercase", reason = "Avoid memory allocation. Use `biome_string_case::StrLikeExtension::to_ascii_lowercase_cow` instead." },
|
|
{ path = "str::to_lowercase", reason = "Avoid memory allocation. Use `biome_string_case::StrOnlyExtension::to_lowercase_cow` instead." },
|
|
]
|