-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
35 lines (35 loc) · 1.14 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
35
{
"plugins": ["stylelint-scss"],
"extends": ["stylelint-config-standard", "stylelint-config-recommended", "stylelint-config-recommended-scss"],
"rules": {
"at-rule-no-vendor-prefix": true,
"at-rule-empty-line-before": [
"always",
{
"ignore": ["after-comment", "inside-block", "blockless-after-same-name-blockless"]
}
],
"indentation": null,
"value-list-comma-newline-after": null,
"declaration-empty-line-before": null,
"no-eol-whitespace": null,
"font-family-no-missing-generic-family-keyword": null,
"block-closing-brace-newline-before": "always",
"block-closing-brace-newline-after": "always",
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always",
"at-rule-semicolon-newline-after": "always",
"at-rule-semicolon-space-before": "never",
"selector-max-class": null,
"unit-whitelist": null,
"selector-pseudo-element-colon-notation": "single",
"no-missing-end-of-source-newline": null,
"color-hex-case": null,
"color-hex-length": null,
"block-no-empty": null,
"no-descending-specificity": null,
"no-empty-source": null,
"declaration-colon-newline-after": null,
"function-name-case": null
}
}