forked from mollie/Shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
29 lines (29 loc) · 840 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
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-less"
],
"ignoreFiles": [
"Resources/views/frontend/_public/src/less/checkout.less",
"Resources/views/frontend/_public/src/less/components.less"
],
"rules": {
"indentation": 4,
"color-hex-case": "lower",
"no-missing-end-of-source-newline": true,
"property-no-unknown": [true, {
"severity": "warning",
"ignoreProperties": [
"user-focus",
"user-input",
"user-modify"
]
}],
"no-descending-specificity": null,
"max-nesting-depth": [3, {
"ignore": ["blockless-at-rules", "pseudo-classes"],
"severity": "warning"
}],
"at-rule-no-unknown": null
}
}