-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
40 lines (40 loc) · 1.44 KB
/
.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
39
40
{
"extends": "stylelint-prettier/recommended",
"ignoreFiles": ["**/*.html", "**/*.js"],
"plugins": [
"stylelint-prettier",
],
"rules": {
"prettier/prettier": true,
"at-rule-no-unknown": null,
"font-family-no-missing-generic-family-keyword": null,
"no-missing-end-of-source-newline": null,
"no-empty-source": null,
"shorthand-property-no-redundant-values": null,
"block-no-empty": null,
"indentation": 2,
"string-quotes": "single",
"no-duplicate-selectors": true,
"color-hex-length": "long",
"color-named": "never",
"selector-no-qualifying-type": true,
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"selector-attribute-operator-space-before": "never",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "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-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "never",
"media-feature-name-no-vendor-prefix": true,
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always",
"max-empty-lines": null,
}
}