forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
26 lines (26 loc) · 835 Bytes
/
.stylelintrc
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
{
"extends": "stylelint-config-recommended",
"processors": ["@mapbox/stylelint-processor-arbitrary-tags"],
"plugins": [
"stylelint-order"
],
"rules": {
"no-duplicate-selectors": true,
"no-empty-source": null,
"selector-type-no-unknown": [
true,
{
"ignore": ["custom-elements"]
}
],
"block-closing-brace-newline-after": "always",
"block-closing-brace-newline-before": "always-multi-line",
"block-closing-brace-space-before": "always-single-line",
"block-opening-brace-newline-after": "always-multi-line",
"block-opening-brace-space-after": "always-single-line",
"block-opening-brace-space-before": "always",
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"order/properties-alphabetical-order": true
}
}