-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.stylelintrc
More file actions
48 lines (48 loc) · 1.42 KB
/
.stylelintrc
File metadata and controls
48 lines (48 loc) · 1.42 KB
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
46
47
48
{
"extends": "stylelint-config-standard-scss",
"rules": {
"rule-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment"]
}
],
"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"]
}
],
"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",
"scss/operator-no-newline-after": null
},
"ignoreFiles": [
"media/css/libs/**/*",
"media/css/cms/wagtail-admin.css",
"media/css/pattern_library/theme.css"
]
}