forked from mozilla/protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
37 lines (37 loc) · 1.1 KB
/
.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
{
"extends": "stylelint-config-standard-scss",
"rules": {
"declaration-empty-line-before": "never",
"declaration-no-important": true,
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"property-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"at-rule-empty-line-before": null,
"no-descending-specificity": null,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true,
"ignoreFunctions": ["local"]
}
],
"max-line-length": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": [
"grid-area",
"grid-column",
"grid-gap",
"grid-row",
"grid-template",
"inset"
]
}
],
"function-url-no-scheme-relative": true,
"max-nesting-depth": 5,
"no-unknown-animations": true
}
}