-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscss.json
59 lines (54 loc) · 1.75 KB
/
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
{
"$schema": "https://json.schemastore.org/stylelintrc.json",
"extends": [
"./.stylelintrc.json",
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"rules": {
"at-rule-empty-line-before": [
"always",
{
"except": ["blockless-after-same-name-blockless", "first-nested"],
"ignore": ["after-comment"],
"ignoreAtRules": ["else"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{ "ignorePseudoClasses": ["global", "export"] }
],
"number-max-precision": 2,
"alpha-value-notation": "percentage",
"scss/at-each-key-value-single-line": true,
"scss/at-function-named-arguments": "always",
"scss/at-mixin-named-arguments": "always",
"scss/at-use-no-unnamespaced": true,
"scss/at-use-no-redundant-alias": true,
"scss/dollar-variable-empty-line-after": [
"always",
{ "except": ["last-nested", "before-dollar-variable"] }
],
"scss/dollar-variable-first-in-block": [
true,
{
"ignore": ["imports"],
"except": ["function"]
}
],
"scss/dollar-variable-no-namespaced-assignment": true,
"scss/declaration-nested-properties": "never",
"scss/dimension-no-non-numeric-values": true,
"scss/function-calculation-no-interpolation": true,
"scss/function-color-relative": true,
"scss/function-no-unknown": true,
"scss/map-keys-quotes": "always",
"scss/partial-no-import": true,
"scss/selector-no-redundant-nesting-selector": true,
"scss/selector-no-union-class-name": true,
"scss/no-duplicate-dollar-variables": [true, { "ignoreDefaults": false }],
"property-no-unknown": null,
"scss/property-no-unknown": true,
"media-feature-name-value-no-unknown": null
}
}