Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 279 Bytes

14034.md

File metadata and controls

19 lines (16 loc) · 279 Bytes

Do not change case of property name if inside a variable declaration in LESS (#14034 by @mvorisek)

// Input
@var: {
  preserveCase: 0;
};

// Prettier stable
@var: {
  preservecase: 0;
};

// Prettier main
@var: {
  preserveCase: 0;
};