forked from donmccurdy/three-gltf-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sass-lint.yml
116 lines (100 loc) · 1.71 KB
/
.sass-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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Linter Options
options:
# Don't merge default rules
merge-default-rules: false
# Set the formatter to 'html'
# formatter: html
# Output file instead of logging results
# output-file: 'linters/sass-lint.html'
# File Options
files:
include: 'css/**/*.s+(a|c)ss'
ignore:
- 'node_modules/**/*.*'
- 'bower_components/**/*.*'
# Rule Configuration
rules:
# Style Guide
border-zero:
- 1
- convention: zero
class-name-format:
- 1
- convention: hyphenatedlowercase
hex-notation:
- 2
- style: uppercase
indentation:
- 2
- size: 2
quotes:
- 1
- style: doublequotes
variable-for-property:
- 2
- properties:
- content
# Extends
extends-before-declarations: 2
extends-before-mixins: 2
placeholder-in-extend: 2
# Mixins
mixins-before-declarations:
- 2
- exclude:
- breakpoint
- mq
# Disallows
no-debug: 2
no-duplicate-properties: 2
no-empty-rulesets: 0
no-ids: 2
no-important: 0
no-vendor-prefixes: 0
no-warn: 2
# Property Units
property-units:
- 1
- global:
# Font-relative lengths
- ch
- em
- ex
- rem
- cm
# Absolute lengths
- in
- mm
- pc
- pt
- px
- q
# Viewport-percentage lengths
- vh
- vw
- vmin
- vmax
# Angle
- deg
- grad
- rad
- turn
# Duration
- ms
- s
# Frequency
- Hz
- kHz
# Resolution
- dpi
- dpcm
- dppx
# Other
- '%'
per-property: {}
# Inner Spacing
space-after-colon: 1
space-after-comma: 1
space-before-brace: 1
# Final items
final-newline: 2