Back to Prettier

19517

changelog_unreleased/less/19517.md

3.9.5266 B
Original Source

Remove spaces between merge markers and colons (#19517 by @kovsu)

<!-- prettier-ignore -->
less
// Input
a {
  box-shadow  +  : 0 0 1px #000;
}

// Prettier stable
a {
  box-shadow+  : 0 0 1px #000;
}

// Prettier main
a {
  box-shadow+: 0 0 1px #000;
}