forked from Vonage/vivid-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
45 lines (45 loc) · 945 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"ignoreFiles": [
"**/*"
],
"overrides": [
{
"files": [
"**/*.scss"
],
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-idiomatic-order",
"stylelint-config-prettier"
],
"rules": {
"string-quotes": "double",
"indentation": "tab",
"plugin/no-unsupported-browser-features": [
true,
{
"severity": "warning"
}
],
"order/properties-alphabetical-order": null,
"selector-max-id": null,
"selector-class-pattern": null,
"max-nesting-depth": null,
"selector-max-compound-selectors": null,
"no-duplicate-selectors": true,
"declaration-block-no-duplicate-properties": true,
"function-parentheses-space-inside": null,
"rule-empty-line-before": null,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
]
}
}
]
}