@plumeria/eslint-plugin 10.3.2 → 10.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rules/validate-values.js +1730 -1673
- package/dist/util/validData.js +43 -2
- package/package.json +1 -1
package/dist/util/validData.js
CHANGED
|
@@ -96,6 +96,20 @@ const validData = {
|
|
|
96
96
|
'space-evenly',
|
|
97
97
|
'stretch',
|
|
98
98
|
],
|
|
99
|
+
alignmentBaseline: [
|
|
100
|
+
'auto',
|
|
101
|
+
'baseline',
|
|
102
|
+
'before-edge',
|
|
103
|
+
'text-before-edge',
|
|
104
|
+
'middle',
|
|
105
|
+
'central',
|
|
106
|
+
'after-edge',
|
|
107
|
+
'text-after-edge',
|
|
108
|
+
'ideographic',
|
|
109
|
+
'alphabetic',
|
|
110
|
+
'hanging',
|
|
111
|
+
'mathematical',
|
|
112
|
+
],
|
|
99
113
|
alignItems: [
|
|
100
114
|
'normal',
|
|
101
115
|
'stretch',
|
|
@@ -133,6 +147,7 @@ const validData = {
|
|
|
133
147
|
animationTimingFunction: [],
|
|
134
148
|
aspectRatio: ['auto'],
|
|
135
149
|
backdropFilter: ['none'],
|
|
150
|
+
baselineShift: ['baseline', 'sub', 'super'],
|
|
136
151
|
backfaceVisibility: ['visible', 'hidden'],
|
|
137
152
|
background: ['none'],
|
|
138
153
|
backgroundAttachment: [],
|
|
@@ -274,6 +289,8 @@ const validData = {
|
|
|
274
289
|
],
|
|
275
290
|
clipPath: [],
|
|
276
291
|
clipRule: ['nonzero', 'evenodd'],
|
|
292
|
+
colorInterpolation: ['auto', 'sRGB', 'linearRGB'],
|
|
293
|
+
colorInterpolationFilters: ['auto', 'sRGB', 'linearRGB'],
|
|
277
294
|
colorScheme: ['normal', 'dark', 'light'],
|
|
278
295
|
columnCount: ['auto'],
|
|
279
296
|
columnFill: ['auto', 'balance'],
|
|
@@ -284,6 +301,8 @@ const validData = {
|
|
|
284
301
|
columnSpan: ['none', 'all'],
|
|
285
302
|
columnWidth: ['auto', 'max-content', 'min-content'],
|
|
286
303
|
columns: [],
|
|
304
|
+
contain: ['none', 'strict', 'content'],
|
|
305
|
+
containerType: ['size', 'inline-size', 'normal'],
|
|
287
306
|
content: [
|
|
288
307
|
'open-quote',
|
|
289
308
|
'close-quote',
|
|
@@ -292,10 +311,12 @@ const validData = {
|
|
|
292
311
|
'normal',
|
|
293
312
|
'none',
|
|
294
313
|
],
|
|
314
|
+
contentVisibility: ['visible', 'hidden', 'auto'],
|
|
295
315
|
counterIncrement: ['none'],
|
|
296
316
|
counterReset: ['none'],
|
|
297
317
|
counterSet: ['none'],
|
|
298
318
|
cursor: ['auto'],
|
|
319
|
+
direction: ['ltr', 'rtl'],
|
|
299
320
|
position: ['static', 'relative', 'absolute', 'fixed', 'sticky'],
|
|
300
321
|
display: [
|
|
301
322
|
'block',
|
|
@@ -328,7 +349,24 @@ const validData = {
|
|
|
328
349
|
'inline-grid',
|
|
329
350
|
'inline-list-item',
|
|
330
351
|
],
|
|
352
|
+
dominantBaseline: [
|
|
353
|
+
'auto',
|
|
354
|
+
'use-script',
|
|
355
|
+
'no-change',
|
|
356
|
+
'reset-size',
|
|
357
|
+
'ideographic',
|
|
358
|
+
'alphabetic',
|
|
359
|
+
'hanging',
|
|
360
|
+
'mathematical',
|
|
361
|
+
'central',
|
|
362
|
+
'middle',
|
|
363
|
+
'text-after-edge',
|
|
364
|
+
'text-before-edge',
|
|
365
|
+
],
|
|
331
366
|
emptyCells: ['show', 'hide'],
|
|
367
|
+
fill: ['none', 'currentColor'],
|
|
368
|
+
fillOpacity: [],
|
|
369
|
+
fillRule: ['nonzero', 'evenodd'],
|
|
332
370
|
filter: ['none'],
|
|
333
371
|
flex: ['none'],
|
|
334
372
|
flexDirection: ['row', 'row-reverse', 'column', 'column-reverse'],
|
|
@@ -346,6 +384,7 @@ const validData = {
|
|
|
346
384
|
flexWrap: ['nowrap', 'wrap', 'wrap-reverse'],
|
|
347
385
|
float: ['inline-start', 'inline-end', 'left', 'none', 'right'],
|
|
348
386
|
font: ['none'],
|
|
387
|
+
forcedColorAdjust: ['auto', 'none'],
|
|
349
388
|
fontFamily: [],
|
|
350
389
|
fontFeatureSettings: [],
|
|
351
390
|
fontKerning: ['auto', 'normal', 'none'],
|
|
@@ -666,6 +705,7 @@ const validData = {
|
|
|
666
705
|
scrollbarGutter: ['auto', 'stable', 'stable both-edges'],
|
|
667
706
|
scrollbarWidth: ['none', 'auto', 'thin'],
|
|
668
707
|
shapeImageThreshold: [],
|
|
708
|
+
shapeMargin: [],
|
|
669
709
|
shapeOutside: ['none'],
|
|
670
710
|
shapeRendering: ['auto', 'optimizeSpeed', 'crispEdges', 'geometricPrecision'],
|
|
671
711
|
stopColor: [],
|
|
@@ -737,6 +777,7 @@ const validData = {
|
|
|
737
777
|
'geometricPrecision',
|
|
738
778
|
],
|
|
739
779
|
textShadow: [],
|
|
780
|
+
textSizeAdjust: ['none', 'auto'],
|
|
740
781
|
textTransform: [
|
|
741
782
|
'none',
|
|
742
783
|
'captalize',
|
|
@@ -786,11 +827,11 @@ const validData = {
|
|
|
786
827
|
transitionProperty: ['none', 'all'],
|
|
787
828
|
transitionTimingFunction: [],
|
|
788
829
|
translate: ['none'],
|
|
789
|
-
|
|
830
|
+
unicodeBidi: [
|
|
790
831
|
'normal',
|
|
791
832
|
'embed',
|
|
792
833
|
'isolate',
|
|
793
|
-
'
|
|
834
|
+
'bidi-override',
|
|
794
835
|
'isolate-override',
|
|
795
836
|
'plaintext',
|
|
796
837
|
],
|