Rule property-sort-order will enforce the order in which declarations are written.
order:'alphabetical','concentric','recess','smacss', or[array of properties](defaults toalphabetical. Unknown properties are sorted alphabetically)ignore-custom-properties:true/false(defaults tofalse)
Property orders: https://github.com/sasstools/sass-lint/tree/develop/lib/config/property-sort-orders
When enabled (assuming order: alphabetical), the following are allowed:
.foo {
content: 'baz';
height: 100vh;
width: 100vw;
}When enabled (assuming order: alphabetical), the following are disallowed:
.foo {
width: 100vw;
height: 100vh;
content: 'baz';
}You have the option to create your own custom property sort orders. These are specified in your .sass-lint.yml file as below:
property-sort-order:
- 1
-
order:
- border
- display
- colorWhen the custom order is specified as above, the following are allowed:
.foo {
border: 1px solid blue;
display: block;
color: red;
}When the custom order is specified as above, the following are disallowed:
.foo {
display: block;
color: red;
border: 1px solid blue;
}When ignore-custom-properties: false (assume order: 'alphabetical') the following would be allowed
.foo {
border: 1px solid blue;
color: red;
composes: heading;
display: block;
}When ignore-custom-properties: false (assume order: 'alphabetical') the following would be disallowed
.foo {
composes: heading; // not in alphabetical order
border: 1px solid blue;
color: red;
display: block;
}When ignore-custom-properties: true (assume order: 'alphabetical') the following would be allowed
.foo {
composes: heading; // custom properties ignored
border: 1px solid blue;
color: red;
display: block;
}