-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
47 lines (44 loc) · 1.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* eslint-disable */
// @ts-nocheck
const path = require('path')
module.exports = {
ignoreFiles: ["node_modules"],
extends: "stylelint-config-standard",
processors: [path.join(__dirname, "stylelint.processor.js")],
plugins: ["stylelint-order"],
rules: {
"indentation": 4,
"no-empty-source": null,
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"at-rule-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
// "at-rule-no-unknown": null,
"order/order": [
"dollar-variables",
"custom-properties",
"declarations",
"rules",
"at-rules"
],
"order/properties-order": [
"display",
"float",
"position",
"left",
"top",
"right",
"bottom",
"width",
"height",
"padding",
"margin",
"border",
"background",
"color",
"font",
"text"
]
}
};