-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
62 lines (62 loc) · 1.22 KB
/
.stylelintrc.json
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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-recommended",
"stylelint-config-html/svelte"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": [
"flex-flow",
"grid-gap",
"grid-template"
]
}
],
"declaration-no-important": null,
"function-no-unknown": [ true, {
"ignoreFunctions": ["url-friendly-color"]
}],
"function-url-quotes": "never",
"media-feature-range-notation": "prefix",
"media-query-no-invalid": null,
"no-descending-specificity": [
true,
{
"ignore": [
"selectors-within-list"
]
}
],
"no-invalid-double-slash-comments": true,
"rule-empty-line-before": [
"always",
{
"except": [
"first-nested",
"after-single-line-comment"
]
}
],
"selector-class-pattern": null,
"shorthand-property-no-redundant-values": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global"
]
}
],
"selector-pseudo-element-colon-notation": "single"
}
}