hudochenkov / stylelint-order

A plugin pack of order related linting rules for Stylelint.
MIT License
916 stars 61 forks source link

--fix removes $ from SASS variables #189

Closed bognikol closed 4 weeks ago

bognikol commented 10 months ago

Pay attention what happens with $color:

Before --fix:

.right
  background: $super-light-gray
  border-left: 1px solid $color

After --fix:

.right
  border-left: 1px solid color
  background: $super-light-gray
hudochenkov commented 4 weeks ago

This plugin doesn't touch values of properties. Most likely some other plugin interferes.