-
Notifications
You must be signed in to change notification settings - Fork 2
/
.sasslintrc
76 lines (76 loc) · 1.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"files": {
"include": "**/*.s+(a|c)ss",
"ignore": ["**/vendor/**/*", "node_modules/**/*"]
},
"options": {
"max-warnings": 0
},
"rules": {
"bem-depth": [
2,
{
"max-depth": 1
}
],
"class-name-format": 0,
"declarations-before-nesting": 1,
"extends-before-mixins": 2,
"force-pseudo-nesting": 0,
"force-element-nesting": 0,
"force-attribute-nesting": 0,
"placeholder-in-extend": 2,
"property-sort-order": 0,
"quotes": [
2,
{
"style": "single"
}
],
"leading-zero": [
2,
{
"include": true
}
],
"mixins-before-declarations": [
2,
{
"exclude": ["print", "breakpoint", "bp"]
}
],
"mixin-name-format": 0,
"no-color-keywords": 0,
"no-color-literals": 0,
"no-ids": 2,
"no-transition-all": 0,
"no-vendor-prefixes": 0,
"no-misspelled-properties": [
2,
{
"extra-properties": ["composes"]
}
],
"no-url-domains": 0,
"no-url-protocols": 0,
"nesting-depth": [
2,
{
"max-depth": 3
}
],
"no-qualifying-elements": [
2,
{
"allow-element-with-attribute": true
}
],
"hex-notation": [
2,
{
"style": "lowercase"
}
],
"indentation": 0
}
}