biome/clippy.toml
Arend van Beelen jr. d7dff5c998
chore: use Self where appropriate (#5699)
Co-authored-by: adamnemecek <adamnemecek@gmail.com>
2025-04-18 10:36:57 +02:00

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." },
]