Skip to content

Version History

Version 2.0.5

Patch Changes

  • #6461 38862e6 Thanks @ematipico! - Fixed #6419, a regression where stdin mode would create a temporary new file instead of using the one provided by the user. This was an intended regression.

    Now Biome will use the file path passed via --std-file-path, and apply the configuration that matches it.

  • #6480 050047f Thanks @Conaclos! - Fixed #6371. useNamingConvention now checks the string case of objects’ property shorthand.

  • #6477 b98379d Thanks @ematipico! - Fixed an issue where Biome formatter didn’t format consistently CSS value separated by commas.

    .font-heading {
    font-feature-settings: var(--heading-salt), var(--heading-ss06),
    var(--heading-ss11), var(--heading-cv09), var(--heading-liga),
    var(--heading-calt);
    font-feature-settings:
    var(--heading-salt), var(--heading-ss06), var(--heading-ss11),
    var(--heading-cv09), var(--heading-liga), var(--heading-calt);
    }
  • #6248 ec7126c Thanks @fireairforce! - Fixed grit pattern matching for different kinds of import statements.

    The grit pattern import $imports from "foo" will match the following code:

    import bar from "foo";
    import { bar } from "foo";
    import { bar, baz } from "foo";