@@ -896,8 +896,82 @@ ruleTester.run("key-spacing", rule, {
896
896
on : "value"
897
897
}
898
898
} ]
899
- }
900
- ] ,
899
+ } ,
900
+
901
+ // https://github.com/eslint/eslint/issues/15914
902
+ {
903
+ code : `
904
+ var foo = {
905
+ "a": "bar",
906
+ "๐": "baz"
907
+ };
908
+ ` ,
909
+ options : [ {
910
+ align : {
911
+ on : "value"
912
+ }
913
+ } ]
914
+ } ,
915
+ {
916
+ code : `
917
+ var foo = {
918
+ "a": "bar",
919
+ "ร": "baz",
920
+ "oอ": "qux",
921
+ "mฬ
": "xyz",
922
+ "ล": "abc"
923
+
924
+ };
925
+ ` ,
926
+ options : [ {
927
+ align : {
928
+ on : "value"
929
+ }
930
+ } ]
931
+ } ,
932
+ {
933
+ code : `
934
+ var foo = {
935
+ "๐ท": "bar", // 2 code points
936
+ "๐": "baz", // 2 code points
937
+ "๐ฎ๐ณ": "qux", // 4 code points
938
+ "๐ณ๏ธโ๐": "xyz", // 6 code points
939
+ };
940
+ ` ,
941
+ options : [ {
942
+ align : {
943
+ on : "value"
944
+ }
945
+ } ]
946
+ } ,
947
+ {
948
+ code : `
949
+ const foo = {
950
+ "a": "bar",
951
+ [๐]: "baz"
952
+ };
953
+ ` ,
954
+ options : [ {
955
+ align : {
956
+ on : "value"
957
+ }
958
+ } ] ,
959
+ parserOptions : { ecmaVersion : 6 }
960
+ } ,
961
+ {
962
+ code : `
963
+ const foo = {
964
+ "abc": "bar",
965
+ [ ๐ ]: "baz"
966
+ };
967
+ ` ,
968
+ options : [ {
969
+ align : {
970
+ on : "value"
971
+ }
972
+ } ] ,
973
+ parserOptions : { ecmaVersion : 6 }
974
+ } ] ,
901
975
invalid : [ {
902
976
code : "var a ={'key' : value };" ,
903
977
output : "var a ={'key':value };" ,
@@ -2203,5 +2277,103 @@ ruleTester.run("key-spacing", rule, {
2203
2277
{ messageId : "missingValue" , data : { computed : "" , key : "bar" } , line : 3 , column : 12 , type : "Literal" } ,
2204
2278
{ messageId : "missingValue" , data : { computed : "" , key : "baz" } , line : 3 , column : 20 , type : "Literal" }
2205
2279
]
2206
- } ]
2280
+ } ,
2281
+ {
2282
+ code : `
2283
+ const foo = {
2284
+ "a": "bar",
2285
+ [ ๐ ]: "baz"
2286
+ };
2287
+ ` ,
2288
+ output : `
2289
+ const foo = {
2290
+ "a": "bar",
2291
+ [ ๐ ]: "baz"
2292
+ };
2293
+ ` ,
2294
+ options : [ {
2295
+ align : {
2296
+ on : "value"
2297
+ }
2298
+ } ] ,
2299
+ parserOptions : { ecmaVersion : 6 } ,
2300
+ errors : [
2301
+ { messageId : "missingValue" , data : { computed : "" , key : "a" } , line : 3 , column : 22 , type : "Literal" }
2302
+ ]
2303
+ } ,
2304
+ {
2305
+ code : `
2306
+ const foo = {
2307
+ "a": "bar",
2308
+ [ ๐ ]: "baz"
2309
+ };
2310
+ ` ,
2311
+ output : `
2312
+ const foo = {
2313
+ "a" : "bar",
2314
+ [ ๐ ]: "baz"
2315
+ };
2316
+ ` ,
2317
+ options : [ {
2318
+ align : {
2319
+ on : "colon"
2320
+ }
2321
+ } ] ,
2322
+ parserOptions : { ecmaVersion : 6 } ,
2323
+ errors : [
2324
+ { messageId : "missingKey" , data : { computed : "" , key : "a" } , line : 3 , column : 17 , type : "Literal" }
2325
+ ]
2326
+ } ,
2327
+ {
2328
+ code : `
2329
+ const foo = {
2330
+ "a": "bar",
2331
+ "๐": "baz"
2332
+ };
2333
+ ` ,
2334
+ output : `
2335
+ const foo = {
2336
+ "a": "bar",
2337
+ "๐": "baz"
2338
+ };
2339
+ ` ,
2340
+ options : [ {
2341
+ align : {
2342
+ on : "value"
2343
+ }
2344
+ } ] ,
2345
+ parserOptions : { ecmaVersion : 6 } ,
2346
+ errors : [
2347
+ { messageId : "extraValue" , data : { computed : "" , key : "a" } , line : 3 , column : 20 , type : "Literal" }
2348
+ ]
2349
+ } ,
2350
+ {
2351
+ code : `
2352
+ var foo = {
2353
+ "๐ท": "bar", // 2 code points
2354
+ "๐": "baz", // 2 code points
2355
+ "๐ฎ๐ณ": "qux", // 4 code points
2356
+ "๐ณ๏ธโ๐": "xyz", // 6 code points
2357
+ };
2358
+ ` ,
2359
+ output : `
2360
+ var foo = {
2361
+ "๐ท": "bar", // 2 code points
2362
+ "๐": "baz", // 2 code points
2363
+ "๐ฎ๐ณ": "qux", // 4 code points
2364
+ "๐ณ๏ธโ๐": "xyz", // 6 code points
2365
+ };
2366
+ ` ,
2367
+ options : [ {
2368
+ align : {
2369
+ on : "value"
2370
+ }
2371
+ } ] ,
2372
+ errors : [
2373
+ { messageId : "extraValue" , data : { computed : "" , key : "๐ท" } , line : 3 , column : 21 , type : "Literal" } ,
2374
+ { messageId : "extraValue" , data : { computed : "" , key : "๐" } , line : 4 , column : 21 , type : "Literal" } ,
2375
+ { messageId : "extraValue" , data : { computed : "" , key : "๐ฎ๐ณ" } , line : 5 , column : 23 , type : "Literal" }
2376
+ ]
2377
+ }
2378
+ ]
2207
2379
} ) ;
0 commit comments