Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 235 Bytes

14103.md

File metadata and controls

17 lines (14 loc) · 235 Bytes

Do not insert space in LESS property access (#14103 by @fisker)

// Input
a {
  color: @colors[@white];
}

// Prettier stable
a {
  color: @colors[ @white];
}

// Prettier main
<Same as input>