forked from j0nezz/next-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
43 lines (42 loc) · 1.36 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
41
42
43
{
"customSyntax": "postcss-styled-syntax",
"extends": [
"stylelint-config-recommended"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["extends"]
}
],
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": true,
"function-calc-no-unspaced-operator": true,
"function-linear-gradient-no-nonstandard-direction": true,
"keyframe-declaration-no-important": true,
"media-feature-name-no-unknown": true,
"no-descending-specificity": true,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"no-empty-source": null,
"no-invalid-double-slash-comments": true,
"property-no-unknown": true,
"color-no-invalid-hex": true,
"color-named": "never",
"color-hex-length": "long",
"color-no-hex": null,
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-no-unknown": true,
"selector-type-no-unknown": true,
"string-no-newline": true,
"unit-no-unknown": true,
"block-no-empty": null,
"font-weight-notation": "named-where-possible",
"font-family-name-quotes": "always-unless-keyword",
"value-no-vendor-prefix": true,
"shorthand-property-no-redundant-values": true,
"number-max-precision": 2,
"unit-allowed-list": ["px", "%", "s", "fr", "rem", "vw", "vh", "deg"]
}
}