Biome CLI v2.5.7
2.5.7 Patch Changes #10822 c171b3b Thanks @pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements. #11136 e63354c Thanks @AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the pr…