Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 271 Bytes

14007.md

File metadata and controls

19 lines (16 loc) · 271 Bytes

Fix semicolon duplicated at the end of LESS file (#14007 by @mvorisek)

// Input
@variable: {
  field: something;
};

// Prettier stable
@variable: {
  field: something;
}; ;

// Prettier main
@variable: {
  field: something;
};