-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc.json
38 lines (38 loc) · 936 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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"rules": {
"at-rule-no-unknown": null,
"declaration-block-single-line-max-declarations": null,
"color-function-notation": null,
"color-hex-case": "upper",
"no-descending-specificity": null,
"no-empty-source": null,
"no-invalid-position-at-import-rule": null,
"property-no-unknown": [
true,
{
"ignoreProperties": [
"alignment-baseline"
]
}
],
"scss/at-rule-no-unknown": true,
"selector-class-pattern": null,
"selector-descendant-combinator-no-non-space": null,
"selector-list-comma-newline-after": null,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
],
"selector-type-case": null,
"selector-type-no-unknown": null,
"value-keyword-case": null
}
}