forked from intershop/intershop-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
33 lines (33 loc) · 1.06 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-recess-order",
"stylelint-prettier/recommended"
],
"ignoreFiles": ["**/node_modules/**", "**/dist/**", "**/compodoc/**"],
"rules": {
"alpha-value-notation": "number",
"at-rule-no-vendor-prefix": true,
"color-function-notation": "legacy",
"color-named": "never",
"font-family-name-quotes": "always-unless-keyword",
"function-url-no-scheme-relative": true,
"function-url-quotes": "always",
"media-feature-name-no-vendor-prefix": true,
"media-feature-name-no-unknown": true,
"no-descending-specificity": null,
"no-duplicate-selectors": true,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"selector-not-notation": "simple",
"selector-pseudo-element-no-unknown": [
true,
{ "ignorePseudoElements": ["ng-deep"] }
],
"scss/comment-no-empty": null,
"scss/no-global-function-names": null,
"value-keyword-case": "lower",
"value-no-vendor-prefix": true
}
}