-
Notifications
You must be signed in to change notification settings - Fork 7
/
.stylelintrc
38 lines (38 loc) · 978 Bytes
/
.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
{
"ignoreFiles": [
"dist/**"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss"
],
"rules": {
"alpha-value-notation": null,
"annotation-no-unknown": null,
"at-rule-empty-line-before": null,
"block-no-empty": null,
"color-function-notation": "legacy",
"function-no-unknown": null,
"import-notation": null,
"no-descending-specificity": null,
"no-empty-source": null,
"media-query-no-invalid": null,
"number-max-precision": null,
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
],
"selector-class-pattern": null,
"selector-type-no-unknown": null,
"value-keyword-case": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-if-no-null": null,
"scss/comment-no-empty": null,
"scss/operator-no-unspaced": null,
"scss/operator-no-newline-after": null
}
}