forked from ensdomains/ens-app-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
30 lines (30 loc) · 1.01 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
{
"processors": ["stylelint-processor-styled-components"],
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-styled-components",
"stylelint-config-prettier"
],
"customSyntax": "postcss-scss",
"rules": {
"selector-type-case": ["lower", { "ignoreTypes": ["/^\\$\\w+/"] }],
"selector-type-no-unknown": [true, { "ignoreTypes": ["/-styled-mixin/", "/^\\$\\w+/"] }],
"value-keyword-case": ["lower", { "ignoreKeywords": ["dummyValue", "currentColor"] }],
"declaration-colon-newline-after": null,
"declaration-empty-line-before": null,
"property-no-unknown": [
true,
{
"ignoreProperties": ["flex-gap", "webkit-appearance"]
}
],
"color-function-notation": "legacy",
"alpha-value-notation": "number",
"scss/operator-no-newline-after": null,
"scss/operator-no-unspaced": null,
"custom-property-pattern": null,
"rule-empty-line-before": null,
"keyframes-name-pattern": null,
"keyframe-block-no-duplicate-selectors": null
}
}