-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
.stylelintrc
30 lines (30 loc) · 850 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
{
"extends": "stylelint-prettier/recommended",
"ignoreFiles": [
"**/*.html",
"**/*.js",
"**/*.ts"
],
"plugins": [
"stylelint-prettier",
],
"rules": {
"prettier/prettier": true,
"at-rule-no-unknown": null,
"font-family-no-missing-generic-family-keyword": null,
"no-empty-source": null,
"shorthand-property-no-redundant-values": null,
"block-no-empty": null,
"no-duplicate-selectors": true,
"color-hex-length": "long",
"color-named": "never",
"selector-no-qualifying-type": true,
"selector-attribute-quotes": "always",
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"at-rule-no-vendor-prefix": true,
"selector-pseudo-element-colon-notation": "single",
"selector-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true
}
}