-
Notifications
You must be signed in to change notification settings - Fork 60
/
.stylelintrc.json
52 lines (52 loc) · 1.92 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"extends": ["stylelint-config-standard-scss"],
"plugins": ["stylelint-scss"],
"customSyntax": "postcss-scss",
"rules": {
"at-rule-no-unknown": null,
"property-no-unknown": null,
"custom-property-pattern": null,
"import-notation": "string",
"selector-id-pattern": null,
"selector-class-pattern": null,
"function-no-unknown": null,
"at-rule-empty-line-before": [
"always",
{
"except": ["blockless-after-same-name-blockless", "first-nested"],
"ignore": ["after-comment"],
"ignoreAtRules": ["else"]
}
],
"color-hex-length": null,
"block-no-empty": true,
"annotation-no-unknown": null,
"font-family-no-missing-generic-family-keyword": null,
"scss/dollar-variable-empty-line-before": null,
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"scss/load-no-partial-leading-underscore": true,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-parentheses-space-before": "never",
"scss/at-rule-no-unknown": true,
"scss/function-no-unknown": [
true,
{
"ignoreFunctions": ["var", "map-deep-get"]
}
],
"scss/at-mixin-pattern": null,
"scss/declaration-nested-properties-no-divided-groups": true,
"scss/declaration-nested-properties": "never",
"scss/dollar-variable-pattern": null,
"scss/dollar-variable-colon-space-after": "always",
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-no-missing-interpolation": true,
"scss/double-slash-comment-whitespace-inside": "always",
"scss/operator-no-newline-before": true,
"value-keyword-case": null
}
}