-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sasslintrc
62 lines (62 loc) · 1.35 KB
/
.sasslintrc
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
{
"rules": {
"indentation": [
1,
{
"size": 4
}
],
"property-sort-order": [
1,
{
"order": "recess",
"ignore-custom-properties": true
}
],
"class-name-format": [
1,
{
"convention": "hyphenatedbem",
"allow-leading-underscore": false
}
],
"empty-line-between-blocks": [
1,
{
"include": true,
"allow-single-line-rulesets": false
}
],
"no-color-literals": [
0,
{
"allow-rgba": true
}
],
"brace-style": [
1,
{
"style": "stroustrup"
}
],
"nesting-depth": [
1,
{
"max-depth": 3
}
],
"mixins-before-declarations": 0,
"no-ids": 0,
"no-important": 0,
"no-vendor-prefixes": 0,
"shorthand-values": [
1,
{
"allowed-shorthands": [
1,
2
]
}
]
}
}