-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scss-lint.yml
73 lines (52 loc) · 1.04 KB
/
.scss-lint.yml
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
linters:
SelectorDepth:
max_depth: 5
NestingDepth:
max_depth: 5
BorderZero:
enabled: true
convention: zero
BemDepth:
enabled: true
SpaceAfterComma:
enabled: false
SingleLinePerSelector:
enabled: false
DeclarationOrder:
enabled: false
ExtendDirective:
enabled: false
LeadingZero:
enabled: false
ImportantRule:
enabled: false
NameFormat:
enabled: true
PrivateNamingConvention:
enabled: true
prefix: _
PropertySortOrder:
enabled: false
QualifyingElement:
enabled: false
SelectorFormat:
enabled: true
convention: hyphenated_BEM
class_convention: ^(?!js-).*
class_convention_explanation: should not be written in the form js-*
SingleLinePerProperty:
enabled: true
allow_single_line_rule_sets: false
StringQuotes:
enabled: true
Indentation:
severity: warning
character: space
width: 4
Comment:
enabled: false
PseudoElement:
enabled: false
VendorPrefix:
enabled: true
severity: warning