forked from lambda-curry/lc-component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
27 lines (27 loc) · 978 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
{
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-no-unknown": null,
"max-nesting-depth": 6,
"property-no-vendor-prefix": true,
"max-empty-lines": 2,
"indentation": 2,
"function-calc-no-unspaced-operator": true,
"string-quotes": "single",
"no-descending-specificity": null,
"no-duplicate-selectors": true,
"no-invalid-double-slash-comments": true,
"color-named": "never",
"selector-max-id": 1,
"selector-combinator-space-after": "always",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"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",
"function-disallowed-list": ["/^rgb$/"]
}
}