-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy path.stylelintrc.json
73 lines (66 loc) · 2.29 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"extends": "stylelint-config-standard-scss",
"plugins": [
"stylelint-scss"
],
"rules": {
"alpha-value-notation": "number",
"selector-not-notation": null,
"value-keyword-case": null,
"custom-property-pattern": null,
"number-max-precision": 6,
"at-rule-no-unknown": null,
"at-rule-empty-line-before": null,
"at-rule-disallowed-list": [ "debug" ],
"color-function-notation": null,
"color-named": null,
"color-no-invalid-hex": true,
"color-hex-length": "long",
"rule-empty-line-before": null,
"declaration-empty-line-before": null,
"custom-property-empty-line-before" : null,
"block-no-empty": null,
"comment-no-empty": null,
"no-empty-source": null,
"length-zero-no-unit": null,
"property-no-vendor-prefix": null,
"custom-property-no-missing-var-function": null,
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"declaration-no-important": true,
"declaration-block-no-redundant-longhand-properties": [
true,
{ "ignoreShorthands": [
"inset",
"inset-inline",
"inset-block",
"padding-inline",
"padding-block",
"margin-inline",
"margin-block",
"overflow",
"place-content",
"place-items"
] }
],
"scss/load-partial-extension": "always",
"scss/no-global-function-names": null,
"scss/at-import-no-partial-leading-underscore": null,
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-pattern": null,
"scss/at-rule-conditional-no-parentheses": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/dollar-variable-pattern": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/load-no-partial-leading-underscore": null
},
"overrides": [
{
"files": "**/*_variables.scss",
"rules": {
"scss/dollar-variable-default": [ true, { "ignore": "local" } ]
}
}
]
}