forked from ensdomains/ens-app-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
34 lines (34 loc) · 1.1 KB
/
.stylelintrc.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"extends": [
"stylelint-config-standard"
],
"customSyntax": "postcss-styled-syntax",
"rules": {
"selector-type-case": ["lower", { "ignoreTypes": ["/^\\$\\w+/"] }],
"selector-type-no-unknown": [true, { "ignoreTypes": ["/-styled-mixin/", "/^\\$\\w+/"] }],
"value-keyword-case": ["lower", { "ignoreKeywords": ["dummyValue", "currentColor"] }],
"declaration-empty-line-before": null,
"property-no-unknown": [
true,
{
"ignoreProperties": ["flex-gap", "webkit-appearance"]
}
],
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"custom-property-pattern": null,
"rule-empty-line-before": null,
"keyframes-name-pattern": null,
"keyframe-block-no-duplicate-selectors": null,
"no-empty-source": null,
"media-query-no-invalid": null,
"at-rule-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"media-feature-range-notation": null,
"declaration-property-value-no-unknown": [true, {
"ignoreProperties": {
"-moz-background-clip": ["text"]
}
}]
}
}