-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
27 lines (27 loc) · 851 Bytes
/
Copy path.stylelintrc
File metadata and controls
27 lines (27 loc) · 851 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
{
"extends": "stylelint-config-sass-guidelines",
"plugins": ["stylelint-scss"],
"rules": {
"color-named": null,
"indentation": 2,
"max-nesting-depth": null,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-pattern": null,
"scss/percent-placeholder-pattern": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"string-quotes": "single",
"value-no-vendor-prefix": null,
"order/properties-alphabetical-order": null,
"rule-empty-line-before": null,
"function-parentheses-space-inside": [
"never-single-line",
{ "ignore": ["inside-parens"] }
]
}
}