Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 544 Bytes

11516.md

File metadata and controls

22 lines (19 loc) · 544 Bytes

Properly format Sass module configuration values (#11516 by @niksy)

// Input
@use "library" with ($black: #222, $border-radius: 0.1rem, $font-family: "Helvetica, sans-serif", $counters: (1, 2, 3));

// Prettier stable
@use "library" with ($black: #222, $border-radius: 0.1rem, $font-family: "Helvetica, sans-serif", $counters: (1, 2, 3));

// Prettier main
@use "library" with (
  $black: #222,
  $border-radius: 0.1rem,
  $font-family: "Helvetica, sans-serif",
  $list: (
    1,
    2,
    3,
  )
);