This repository was archived by the owner on Jan 5, 2023. It is now read-only.
File tree 1 file changed +37
-29
lines changed
1 file changed +37
-29
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,17 @@ module.exports = {
16
16
'less-mixins' ,
17
17
] ,
18
18
19
+ // specify the alphabetical order of properties within declaration blocks.
20
+ 'order/properties-alphabetical-order' : null ,
21
+
19
22
// specify the almost strict order of properties within declaration blocks
20
23
'order/properties-order' : [
21
24
[
22
25
// Content
23
26
{
24
27
properties : [
25
28
'content' ,
29
+ 'quotes' ,
26
30
] ,
27
31
} ,
28
32
// Position
@@ -44,6 +48,39 @@ module.exports = {
44
48
'visibility' ,
45
49
] ,
46
50
} ,
51
+ // Transform
52
+ {
53
+ properties : [
54
+ 'backface-visibility' ,
55
+
56
+ 'perspective' ,
57
+ 'perspective-origin' ,
58
+
59
+ 'transform' ,
60
+ 'transform-origin' ,
61
+ 'transform-style' ,
62
+
63
+ 'transition' ,
64
+ 'transition-delay' ,
65
+ 'transition-duration' ,
66
+ 'transition-property' ,
67
+ 'transition-timing-function' ,
68
+ ] ,
69
+ } ,
70
+ // Animation
71
+ {
72
+ properties : [
73
+ 'animation' ,
74
+ 'animation-delay' ,
75
+ 'animation-direction' ,
76
+ 'animation-duration' ,
77
+ 'animation-fill-mode' ,
78
+ 'animation-iteration-count' ,
79
+ 'animation-name' ,
80
+ 'animation-play-state' ,
81
+ 'animation-timing-function' ,
82
+ ] ,
83
+ } ,
47
84
// Layout
48
85
{
49
86
properties : [
@@ -256,35 +293,6 @@ module.exports = {
256
293
'word-wrap' ,
257
294
] ,
258
295
} ,
259
- // Transform
260
- {
261
- properties : [
262
- 'transition' ,
263
- 'transition-delay' ,
264
- 'transition-duration' ,
265
- 'transition-property' ,
266
- 'transition-timing-function' ,
267
-
268
- 'transform' ,
269
- 'transform-origin' ,
270
- 'transform-style' ,
271
-
272
- 'perspective' ,
273
- 'perspective-origin' ,
274
-
275
- 'backface-visibility' ,
276
-
277
- 'animation' ,
278
- 'animation-delay' ,
279
- 'animation-direction' ,
280
- 'animation-duration' ,
281
- 'animation-fill-mode' ,
282
- 'animation-iteration-count' ,
283
- 'animation-name' ,
284
- 'animation-play-state' ,
285
- 'animation-timing-function' ,
286
- ] ,
287
- } ,
288
296
] , {
289
297
unspecified : 'bottomAlphabetical' ,
290
298
} ,
You can’t perform that action at this time.
0 commit comments