stylelint-order
stylelint-order copied to clipboard
--fix removes $ from SASS variables
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