-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy path.stylelintrc
More file actions
39 lines (39 loc) · 1.21 KB
/
.stylelintrc
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"extends": ["stylelint-config-standard-scss"],
"customSyntax": "postcss-styled-syntax",
"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,
"indentation": null,
"no-empty-first-line": null,
"no-eol-whitespace": null,
"no-missing-end-of-source-newline": null,
"scss/operator-no-unspaced": null,
"scss/operator-no-newline-after": null,
"value-keyword-case": null,
"function-name-case": null,
"function-whitespace-after": null,
"selector-max-empty-lines": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": ["$dummyValue"]
}
]
},
"ignoreFiles": ["packages/decap-cms-lib-auth/index.d.ts"]
}