CSSLint / csslint

Automated linting of Cascading Stylesheets
http://csslint.net
Other
4.76k stars 483 forks source link

Way to enforce styling multiline-singleline styling? #760

Open ctsimpouris opened 4 years ago

ctsimpouris commented 4 years ago

Module is really nice. My question, is there a way to enforce one of the following? For example, valid

.cartPrice {
  text-align: right;
  white-space: nowrap;
  width: 1%;
}

Invalid, example or anything not like the above

.cartPrice { text-align: right; white-space: nowrap; width: 1%; }