ben-eb / perfectionist

Beautify CSS files.
MIT License
229 stars 14 forks source link

Support comma segmentation split #16

Closed yisibl closed 8 years ago

yisibl commented 8 years ago

Input:

.foo {
  color: rgba(68,120,10,.5);
  background-image: linear-gradient(to top right,red,white,blue);
}

Output:

.foo {
  color: rgba(68, 120, 10, .5);
  background-image: linear-gradient(to top right, red, white, blue);
}
ben-eb commented 8 years ago

Done https://github.com/ben-eb/perfectionist/commit/02e6c4bfcaec9972b6f4930f975871ae02b7f74e.