1void0/utils

View on GitHub
packages/stylelint-config/src/rules/order.ts

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-env commonjs */

/* eslint-disable import/unambiguous */
/* eslint-disable import/no-commonjs */

module.exports = {
  plugins: ['stylelint-order'],
  rules: {
    // Specify the order of content within declaration blocks.
    // 'order/order': [],

    // Specify the order of properties within declaration blocks.
    // 'order/properties-order': [],

    // Specify the alphabetical order of properties within declaration blocks.
    'order/properties-alphabetical-order': true,
  },
}