hudochenkov / stylelint-order

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

Nested properties #166

Closed npoliquin closed 1 year ago

npoliquin commented 1 year ago

It is possible to re-order nested properties?

font: {
  size: 16px;
  weight: 700;
}

position: absolute;

Expected

position: absolute;

font: {
  size: 16px;
  weight: 700;
}
hudochenkov commented 1 year ago

It is not possible in this plugin. And will never will. Nested properties are only a Sass feature, and very rarely used, so it doesn't make sense to make codebase complication for it.