-
Notifications
You must be signed in to change notification settings - Fork 23
/
.stylelintrc-scss.json
113 lines (113 loc) · 3.08 KB
/
.stylelintrc-scss.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"extends": "stylelint-config-standard-scss",
"overrides": [
{
"customSyntax": "postcss-scss",
"files": ["*.scss", "**/*.scss"]
}
],
"rules": {
"alpha-value-notation": null,
"at-rule-empty-line-before": [
"always",
{
"except": ["blockless-after-same-name-blockless", "first-nested"],
"ignore": ["after-comment"],
"ignoreAtRules": ["else"]
}
],
"block-no-empty": true,
"color-function-notation": "legacy",
"comment-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment", "stylelint-commands"]
}
],
"comment-no-empty": true,
"declaration-block-no-duplicate-properties": [
true,
{
"ignore": ["consecutive-duplicates"],
"ignoreProperties": ["composes"]
}
],
"declaration-block-no-redundant-longhand-properties": true,
"declaration-empty-line-before": [
"always",
{
"except": ["after-comment", "after-declaration", "first-nested"]
}
],
"declaration-no-important": [
true,
{
"severity": "error"
}
],
"font-family-name-quotes": "always-unless-keyword",
"font-family-no-duplicate-names": true,
"function-linear-gradient-no-nonstandard-direction": true,
"function-name-case": "lower",
"function-url-quotes": "always",
"length-zero-no-unit": true,
"media-feature-range-notation": null,
"no-descending-specificity": true,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"number-max-precision": 4,
"property-no-unknown": [
true,
{
"ignoreProperties": ["composes"]
}
],
"property-no-vendor-prefix": null,
"rule-empty-line-before": [
"always",
{
"except": ["after-single-line-comment", "first-nested"]
}
],
"scss/at-rule-conditional-no-parentheses": null,
"scss/dollar-variable-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment", "after-dollar-variable"]
}
],
"scss/dollar-variable-pattern": null,
"scss/double-slash-comment-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["between-comments", "stylelint-commands", "inside-block"]
}
],
"scss/no-global-function-names": null,
"scss/operator-no-newline-after": null,
"scss/operator-no-unspaced": null,
"scss/percent-placeholder-pattern": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": true,
"selector-not-notation": "complex",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global", "export"]
}
],
"selector-pseudo-element-colon-notation": "double",
"shorthand-property-no-redundant-values": true,
"value-keyword-case": [
"lower",
{
"ignoreProperties": ["composes", "/font-family/"]
}
],
"value-no-vendor-prefix": true,
"scss/dollar-variable-colon-space-after": "always-single-line"
}
}