packages/stylelint-config/src/rules/order.ts
/* 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,
},
}