forked from nasa/earthdata-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
42 lines (42 loc) · 853 Bytes
/
.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
{
"customSyntax": "postcss-scss",
"extends": [
"stylelint-config-standard",
"stylelint-config-idiomatic-order"
],
"plugins": [
"stylelint-scss"
],
"rules": {
"no-descending-specificity": null,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"custom-property-pattern": "[a-z]__.+",
"import-notation": "string",
"keyframes-name-pattern": "[a-zA-Z]",
"property-no-unknown": [
true,
{
"ignoreProperties": [
"composes",
"compose-with"
]
}
],
"selector-class-pattern": "[a-zA-Z]",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
],
"value-keyword-case": [
"lower",
{
"ignoreKeywords": [
"/[a-zA-Z]/"
]
}
]
}
}