-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
.stylelintrc
34 lines (34 loc) · 1.06 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
{
"processors": ["stylelint-processor-styled-components"],
"extends": ["stylelint-config-standard-scss", "stylelint-config-styled-components"],
"customSyntax": "postcss-scss",
"rules": {
"block-no-empty": null,
"no-duplicate-selectors": null,
"no-empty-source": null,
"no-extra-semicolons": null,
"declaration-empty-line-before": null,
"string-quotes": null,
"selector-class-pattern": null,
"selector-pseudo-element-colon-notation": null,
"rule-empty-line-before": null,
"declaration-colon-newline-after": null,
"at-rule-empty-line-before": null,
"alpha-value-notation": null,
"color-function-notation": null,
"keyframes-name-pattern": null,
"value-list-comma-newline-after": null,
"no-descending-specificity": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": ["$dummyValue"]
}
],
"value-keyword-case": [
"lower",
{ "ignoreKeywords": ["dummyValue"], "camelCaseSvgKeywords": true }
]
},
"ignoreFiles": ["packages/decap-cms-lib-auth/index.d.ts"]
}