-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.stylelintrc.json
More file actions
43 lines (43 loc) · 1.08 KB
/
.stylelintrc.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended",
"stylelint-config-prettier"
],
"rules": {
"indentation": 2,
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": true,
"at-rule-no-unknown": true,
"keyframes-name-pattern": null,
"custom-property-empty-line-before": null,
"no-eol-whitespace": null,
"no-empty-source": null,
"comment-empty-line-before": [
"always",
{
"ignore": [
"after-comment"
]
}
],
"rule-empty-line-before": [
"always",
{
"except": [
"first-nested",
"after-single-line-comment"
]
}
],
"font-family-no-missing-generic-family-keyword": null,
"font-family-name-quotes": "always-unless-keyword",
"no-duplicate-selectors": null,
"selector-pseudo-element-no-unknown": null,
"property-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"value-keyword-case": null,
"at-rule-no-vendor-prefix": null
}
}