-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
59 lines (59 loc) · 1.67 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"plugins": ["stylelint-order", "stylelint-scss"],
"extends": [
"stylelint-config-prettier",
"stylelint-config-standard-scss",
"stylelint-config-idiomatic-order"
],
"rules": {
"order/order": ["custom-properties", "declarations"],
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": "mq"
}
],
"scss/operator-no-newline-after": null,
"string-quotes": "single",
"selector-id-pattern": null,
"selector-class-pattern": null,
"declaration-colon-newline-after": null,
"indentation": [2, { "ignore": ["inside-parens", "param", "value"] }],
"max-line-length": [
120,
{
"ignore": ["non-comments"]
}
],
"block-opening-brace-space-before": [
"always",
{
"ignoreAtRules": ["if", "else"]
}
],
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if", "else"]
}
],
"at-rule-name-space-after": "always",
"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/no-global-function-names": null,
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": ["/flex/"]
}
],
"declaration-empty-line-before": "never",
"at-rule-empty-line-before": null,
"value-list-comma-newline-after": null,
"custom-property-pattern": null,
"no-descending-specificity": null
}
}