matype / stylefmt

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

SCSS $variable will be changed to lowercase #132

Closed ntswor closed 8 years ago

ntswor commented 8 years ago

I have a view SCSS variables defined using camelCase, but those will be changed to lower case names only. E.g.

stage {
  $sidebarWidth: 473px;

  #sidebar {
    width: $sidebarWidth;
  }
}

will be changed to:

stage {
  $sidebarwidth: 473px;

  #sidebar {
    width: $sidebarWidth;
  }
}

Note that only the first occurrence will be changed but not the second one. I would prefer if the SCSS $variable names wouldn't be changed at all since sometimes the rely on imported values where you have no access of changing them.

matype commented 8 years ago

@ntswor Thank you for your report.