-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
27 lines (27 loc) · 798 Bytes
/
.stylelintrc
File metadata and controls
27 lines (27 loc) · 798 Bytes
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
{
"processors": ["stylelint-processor-styled-components"],
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components",
"stylelint-config-rational-order",
"stylelint-config-prettier",
],
"rules": {
"selector-type-no-unknown": [true, {
"ignoreTypes": ["amp-carousel", "amp-accordion", "amp-img", "amp-autocomplete"]
}],
"value-no-vendor-prefix": [true, {
"ignoreValues": ["box"]
}],
"property-no-vendor-prefix": [true , {
"ignoreProperties": ["box-orient"]
}],
"order/properties-order": [],
"plugin/rational-order": true,
"declaration-property-unit-whitelist": {
"font-size": ["rem"],
"line-height": []
},
"value-keyword-case": ["lower", { "ignoreKeywords": ["dummyValue"] }]
}
}