-
Notifications
You must be signed in to change notification settings - Fork 918
/
.stylelintrc
42 lines (42 loc) · 1.26 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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"]
}
],
"font-family-no-missing-generic-family-keyword": [
true,
{
"ignoreFontFamilies": ["FA-Icons-Contact"]
}
],
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": [
"grid-area",
"grid-column",
"grid-gap",
"grid-row",
"grid-template",
"inset"
]
}
],
"selector-not-notation": "simple",
"media-feature-range-notation": "prefix"
},
"ignoreFiles": ["media/css/libs/**/*"]
}