-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.stylelintrc.json
More file actions
30 lines (30 loc) · 704 Bytes
/
.stylelintrc.json
File metadata and controls
30 lines (30 loc) · 704 Bytes
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
{
"extends": "stylelint-config-sass-guidelines",
"plugins": ["stylelint-order"],
"rules": {
"selector-max-compound-selectors": 5,
"max-nesting-depth": 6,
"selector-no-vendor-prefix": [
true,
{
"ignoreSelectors": ["/-moz-.*/", "/-ms-.*/", "/-webkit-.*/"]
}
],
"selector-no-qualifying-type": [
true,
{
"ignore": ["attribute"]
}
],
"value-no-vendor-prefix": [
true,
{
"ignoreValues": ["box"]
}
],
"selector-class-pattern": null,
"scss/percent-placeholder-pattern": null,
"order/properties-alphabetical-order": true,
"@stylistic/function-parentheses-space-inside": null
}
}