-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
39 lines (39 loc) · 931 Bytes
/
.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
35
36
37
38
39
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"rules": {
"scss/at-rule-conditional-no-parentheses": null,
"scss/at-mixin-pattern": null,
"alpha-value-notation": "number",
"value-no-vendor-prefix": null,
"color-function-notation": "legacy",
"selector-id-pattern": null,
"scss/double-slash-comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"no-invalid-double-slash-comments": null,
"rule-empty-line-before": null,
"declaration-empty-line-before": null,
"custom-property-pattern": null,
"selector-class-pattern": null,
"at-rule-no-unknown": null,
"max-line-length":
[
800,
{
"ignore": ["comments"]
}
],
"color-named":
[
"never",
{
"ignore": ["inside-function"]
}
]
},
"selector-pseudo-element-colon-notation": "single",
"number-leading-zero": null,
"no-duplicate-selectors" : null
}