-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc
35 lines (35 loc) · 1.14 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
{
"extends": "stylelint-config-recommended",
"ignoreFiles": "./src/styles/index.css",
"rules": {
"max-nesting-depth": 3,
"property-no-vendor-prefix": true,
"max-empty-lines": 2,
"function-calc-no-unspaced-operator": true,
"string-quotes": "single",
"no-duplicate-selectors": true,
"color-hex-case": "upper",
"color-named": "never",
"selector-max-id": 0,
"selector-combinator-space-after": "always",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"rule-empty-line-before": "never",
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "never",
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always",
"at-rule-no-unknown": [ true, {
"ignoreAtRules": [
"extends",
"tailwind",
"apply",
'screen',
'include',
]
}],
"block-no-empty": null,
}
}