forked from gooddata/gooddata-css-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
84 lines (77 loc) · 1.99 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"block-closing-brace-newline-before": "always",
"block-opening-brace-newline-after": "always",
"declaration-block-no-duplicate-properties": true,
"declaration-no-important": true,
"function-url-quotes": "always",
"indentation": 4,
"max-line-length": 100,
"max-nesting-depth": 3,
"no-duplicate-selectors": true,
"no-extra-semicolons": true,
"no-unknown-animations": true,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"order/properties-order": [
"content",
"position",
"z-index",
"top",
"right",
"bottom",
"left",
"box-sizing",
"display",
"visibility",
"clip",
"zoom",
"flex",
"order",
"justify-content",
"align-items",
"flex-wrap",
"overflow",
"float",
"clear",
"width",
"height",
"min",
"max",
"margin",
"padding",
"border",
"outline",
"box-shadow",
"table",
"empty-cells",
"caption-side",
"border-spacing",
"border-collapse",
"list",
"font",
"line-height",
"white-space",
"word-spacing",
"text",
"vertical-align",
"color",
"background",
"opacity",
"cursor",
"transform",
"transition",
"user-select",
"pointer-events"
],
"selector-max-id": 0,
"string-quotes": "single",
"value-keyword-case": "lower",
"value-no-vendor-prefix": true
}
}