hugomrdias / prettier-stylelint

code > prettier > stylelint > formatted code
MIT License
175 stars 29 forks source link

less mix class after semicolon is removed #19

Open Leonard-Li777 opened 6 years ago

Leonard-Li777 commented 6 years ago

.supply-link:disabled { .supply-link;

color: @disabled-color; }

---->

.supply-link:disabled { .supply-link

color: @disabled-color; }

That is miss supply-link semicolon

===============================

  &--over {
    .background-color(green) !important;

    &-forbidden {
      .background-color(red) !important;
    }

-------------->

  &--over {
    .background-color(green) !important  &-forbidden {
      .background-color(red) !important
    }

That is miss !important semicolon