Skip to content

Commit a031292

Browse files
committed
TomaNistor.com | Updated .sass-lint.yml rules
1 parent 5be9e43 commit a031292

File tree

1 file changed

+226
-1
lines changed

1 file changed

+226
-1
lines changed

.sass-lint.yml

+226-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,232 @@ rules:
8181
property-sort-order:
8282
- 1
8383
-
84-
order: 'smacss'
84+
order:
85+
# Heading
86+
87+
- 'content'
88+
- 'quotes'
89+
90+
# Box
91+
92+
- 'display'
93+
- 'visibility'
94+
95+
- 'position'
96+
- 'z-index'
97+
- 'top'
98+
- 'right'
99+
- 'bottom'
100+
- 'left'
101+
102+
- 'box-sizing'
103+
104+
- 'flex'
105+
- 'flex-basis'
106+
- 'flex-direction'
107+
- 'flex-flow'
108+
- 'flex-grow'
109+
- 'flex-shrink'
110+
- 'flex-wrap'
111+
- 'align-content'
112+
- 'align-items'
113+
- 'align-self'
114+
- 'justify-content'
115+
- 'order'
116+
117+
- 'width'
118+
- 'min-width'
119+
- 'max-width'
120+
- 'height'
121+
- 'min-height'
122+
- 'max-height'
123+
124+
- 'margin'
125+
- 'margin-top'
126+
- 'margin-right'
127+
- 'margin-bottom'
128+
- 'margin-left'
129+
130+
- 'padding'
131+
- 'padding-top'
132+
- 'padding-right'
133+
- 'padding-bottom'
134+
- 'padding-left'
135+
136+
- 'float'
137+
- 'clear'
138+
139+
- 'overflow'
140+
- 'overflow-x'
141+
- 'overflow-y'
142+
143+
- 'clip'
144+
- 'zoom'
145+
146+
- 'columns'
147+
- 'column-gap'
148+
- 'column-fill'
149+
- 'column-rule'
150+
- 'column-span'
151+
- 'column-count'
152+
- 'column-width'
153+
154+
- 'table-layout'
155+
- 'empty-cells'
156+
- 'caption-side'
157+
- 'border-spacing'
158+
- 'border-collapse'
159+
- 'list-style'
160+
- 'list-style-position'
161+
- 'list-style-type'
162+
- 'list-style-image'
163+
164+
# Animation
165+
166+
- 'transform'
167+
- 'transform-origin'
168+
- 'transform-style'
169+
- 'backface-visibility'
170+
- 'perspective'
171+
- 'perspective-origin'
172+
173+
- 'transition'
174+
- 'transition-property'
175+
- 'transition-duration'
176+
- 'transition-timing-function'
177+
- 'transition-delay'
178+
179+
- 'animation'
180+
- 'animation-name'
181+
- 'animation-duration'
182+
- 'animation-play-state'
183+
- 'animation-timing-function'
184+
- 'animation-delay'
185+
- 'animation-iteration-count'
186+
- 'animation-direction'
187+
188+
# Border
189+
190+
- 'border'
191+
- 'border-top'
192+
- 'border-right'
193+
- 'border-bottom'
194+
- 'border-left'
195+
- 'border-width'
196+
- 'border-top-width'
197+
- 'border-right-width'
198+
- 'border-bottom-width'
199+
- 'border-left-width'
200+
201+
- 'border-style'
202+
- 'border-top-style'
203+
- 'border-right-style'
204+
- 'border-bottom-style'
205+
- 'border-left-style'
206+
207+
- 'border-radius'
208+
- 'border-top-left-radius'
209+
- 'border-top-right-radius'
210+
- 'border-bottom-left-radius'
211+
- 'border-bottom-right-radius'
212+
213+
- 'border-color'
214+
- 'border-top-color'
215+
- 'border-right-color'
216+
- 'border-bottom-color'
217+
- 'border-left-color'
218+
219+
- 'outline'
220+
- 'outline-color'
221+
- 'outline-offset'
222+
- 'outline-style'
223+
- 'outline-width'
224+
225+
- 'stroke-width'
226+
- 'stroke-linecap'
227+
- 'stroke-dasharray'
228+
- 'stroke-dashoffset'
229+
- 'stroke'
230+
231+
# Background
232+
233+
- 'opacity'
234+
235+
- 'background'
236+
- 'background-color'
237+
- 'background-image'
238+
- 'background-repeat'
239+
- 'background-position'
240+
- 'background-size'
241+
- 'box-shadow'
242+
- 'fill'
243+
244+
# Text
245+
246+
- 'color'
247+
248+
- 'font'
249+
- 'font-family'
250+
- 'font-size'
251+
- 'font-size-adjust'
252+
- 'font-stretch'
253+
- 'font-effect'
254+
- 'font-style'
255+
- 'font-variant'
256+
- 'font-weight'
257+
258+
- 'font-emphasize'
259+
- 'font-emphasize-position'
260+
- 'font-emphasize-style'
261+
262+
- 'letter-spacing'
263+
- 'line-height'
264+
- 'list-style'
265+
- 'word-spacing'
266+
267+
- 'text-align'
268+
- 'text-align-last'
269+
- 'text-decoration'
270+
- 'text-indent'
271+
- 'text-justify'
272+
- 'text-overflow'
273+
- 'text-overflow-ellipsis'
274+
- 'text-overflow-mode'
275+
- 'text-rendering'
276+
- 'text-outline'
277+
- 'text-shadow'
278+
- 'text-transform'
279+
- 'text-wrap'
280+
- 'word-wrap'
281+
- 'word-break'
282+
283+
- 'text-emphasis'
284+
- 'text-emphasis-color'
285+
- 'text-emphasis-style'
286+
- 'text-emphasis-position'
287+
288+
- 'vertical-align'
289+
- 'white-space'
290+
- 'word-spacing'
291+
- 'hyphens'
292+
293+
- 'src'
294+
295+
# Other
296+
297+
- 'tab-size'
298+
- 'counter-reset'
299+
- 'counter-increment'
300+
- 'resize'
301+
- 'cursor'
302+
- 'pointer-events'
303+
- 'speak'
304+
- 'user-select'
305+
- 'nav-index'
306+
- 'nav-up'
307+
- 'nav-right'
308+
- 'nav-down'
309+
- 'nav-left'
85310
pseudo-element: 1
86311
quotes: 0
87312
shorthand-values: 1

0 commit comments

Comments
 (0)