stylelint-order icon indicating copy to clipboard operation
stylelint-order copied to clipboard

--fix removes $ from SASS variables

Open bognikol opened this issue 2 years ago • 0 comments

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

bognikol avatar Dec 31 '23 19:12 bognikol