-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy path.stylelintrc.json
30 lines (30 loc) · 964 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
{
"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-named": "never",
"font-family-name-quotes": "always-unless-keyword",
"function-url-no-scheme-relative": true,
"function-url-quotes": "always",
"import-notation": "string",
"media-feature-name-no-vendor-prefix": true,
"media-feature-name-no-unknown": true,
"no-descending-specificity": null,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"selector-not-notation": "simple",
"selector-pseudo-element-no-unknown": [
true,
{ "ignorePseudoElements": ["ng-deep"] }
],
"value-keyword-case": "lower",
"value-no-vendor-prefix": true
}
}