matype / stylefmt

stylefmt is a tool that automatically formats stylesheets.
Other
2.1k stars 89 forks source link

Format Sass function #51

Closed matype closed 8 years ago

matype commented 8 years ago

input:

div {
  color: blue;
}
@function myFn  ($var-1,$var-2){
@return $var-1*$var-2;
}

we will get:

div {
  color: blue;
}

@function myFn($var-1, $var-2) {
  @return $var-1 * $var-2;
}

https://github.com/morishitter/cssfmt/pull/47