diff options
author | Hsieh Chin Fan <pham@topo.tw> | 2023-08-04 23:16:32 +0800 |
---|---|---|
committer | Hsieh Chin Fan <pham@topo.tw> | 2023-08-04 23:16:32 +0800 |
commit | 19ab5f5cf66a18880eb5728786a76bb8bd9b9677 (patch) | |
tree | 4d7fb5e2b1920e67511f3d19a5961d871584534d /stylelint.js | |
parent | 6b0ba38813e87b1842c41d9f3f2cef61df23ab1a (diff) |
Update
Diffstat (limited to 'stylelint.js')
-rw-r--r-- | stylelint.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stylelint.js b/stylelint.js new file mode 100644 index 0000000..8688a6d --- /dev/null +++ b/stylelint.js | |||
@@ -0,0 +1,15 @@ | |||
1 | module.exports = { | ||
2 | "plugins": [ | ||
3 | "stylelint-order" | ||
4 | ], | ||
5 | "rules": { | ||
6 | "order/order": [ | ||
7 | "custom-properties", | ||
8 | "declarations" | ||
9 | ], | ||
10 | "order/properties-order": [ | ||
11 | "height", | ||
12 | "width", | ||
13 | ] | ||
14 | } | ||
15 | } | ||