-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scss-lint.yml
61 lines (45 loc) · 1.1 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
exclude:
- 'node_modules/**'
- './src/components/Loading/styles.scss'
linters:
PropertySortOrder:
order: smacss
SelectorFormat:
convention: camel_case
EmptyLineBetweenBlocks:
enabled: false
NameFormat:
convention: camel_case
Indentation:
width: 4
SelectorDepth:
enabled: false
NestingDepth:
enabled: false
UnnecessaryParentReference:
enabled: false
Comment:
enabled: false
HexNotation:
style: uppercase
PropertySpelling:
enabled: true
extra_properties:
- grid-template-columns
- grid-template-rows
- grid-gap
- grid-column-gap
- grid-row-gap
- justify-items
PropertyUnits:
enabled: true
global: ['%', 'Hz', 'ch', 'cm', 'deg', 'dpcm', 'dpi', 'dppx', 'em', 'ex', 'fr', 'grad', 'in', 'kHz', 'mm', 'ms', 'pc', 'pt', 'px', 'q', 'rad', 'rem', 's', 'turn', 'vh', 'vmax', 'vmin', 'vw']
VendorPrefix:
enabled: true
excluded_identifiers: ['user-select', '-moz-placeholder']
ElsePlacement:
enabled: false
QualifyingElement:
enabled: false
SingleLinePerSelector:
enabled: false