aboutsummaryrefslogtreecommitdiffhomepage
path: root/stylelint.js
blob: 8688a6d08d822b26d0eb6bb9e3fa06c742a111f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  "plugins": [
    "stylelint-order"
  ],
  "rules": {
    "order/order": [
      "custom-properties",
      "declarations"
    ],
    "order/properties-order": [
      "height",
      "width",
    ]
  }
}