-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.stylelintrc
82 lines (53 loc) · 1.91 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
{
"extends": "stylelint-config-standard",
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"block-no-empty": null,
"block-opening-brace-newline-after": "always",
"color-function-notation": "legacy",
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"custom-property-no-missing-var-function": null,
"custom-property-pattern": null,
"declaration-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"indentation": 4,
"font-family-name-quotes": "always-unless-keyword",
"function-url-quotes": "always",
"keyframes-name-pattern": null,
"hue-degree-notation": "angle",
"max-empty-lines": [1, { "severity": "warning" }],
"max-line-length": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": ["always", { ignore: "after-comment" }],
"selector-attribute-quotes": "always",
"selector-id-pattern": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": null,
"selector-type-no-unknown": [ true, {
"ignore": ["default-namespace"],
"ignoreNamespaces": [ "/.*/" ],
"ignoreTypes": [ "/.*/" ]
}],
"selector-type-case": null,
"shorthand-property-no-redundant-values": null,
"string-quotes": "double",
"value-keyword-case": "lower",
"value-no-vendor-prefix": null
},
"ignoreFiles": [
"node_modules/**",
"**/node_modules/**",
"deps/**",
"**/deps/**",
"lib/src/**",
:**/lib/src/**",
"**/lama/cm_theme/*",
"**/build/**",
"**/*.__*__.*.js",
"**/themed.css"
]
}