-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.stylelintrc.json
34 lines (32 loc) · 1.15 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
{
"plugins": ["@stylistic/stylelint-plugin"],
"extends": ["stylelint-config-standard", "@stylistic/stylelint-config"],
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"shorthand-property-no-redundant-values": null,
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"comment-empty-line-before": null,
"selector-class-pattern": null,
"length-zero-no-unit": null,
"custom-property-pattern": "[a-z][a-zA-Z0-9_-]?",
"font-family-name-quotes": "always-where-required",
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"media-feature-name-value-no-unknown": true,
"value-keyword-case": ["lower", {
"ignoreKeywords": ["optimizeSpeed"]
}],
"declaration-property-value-no-unknown": [true, {
"ignoreProperties": {
"overflow": ["overlay"]
}
}],
"declaration-block-no-redundant-longhand-properties": [true, {
"ignoreShorthands": ["inset", "grid-template"]
}],
"@stylistic/string-quotes": "single",
"@stylistic/selector-list-comma-newline-after": null
}
}