@@ -184,6 +184,8 @@ ruleTester.run("computed-property-spacing", rule, {
184
184
options : [ "always" , { enforceForClassMembers : true } ] ,
185
185
parserOptions : { ecmaVersion : 6 }
186
186
} ,
187
+
188
+ // handling of parens and comments
187
189
{
188
190
code : [
189
191
"const foo = {" ,
@@ -277,8 +279,11 @@ ruleTester.run("computed-property-spacing", rule, {
277
279
messageId : "missingSpaceBefore" ,
278
280
data : { tokenValue : "]" } ,
279
281
type : "MemberExpression" ,
282
+ line : 1 ,
280
283
column : 17 ,
281
- line : 1
284
+ endLine : 1 ,
285
+ endColumn : 18
286
+
282
287
}
283
288
]
284
289
} ,
@@ -291,8 +296,10 @@ ruleTester.run("computed-property-spacing", rule, {
291
296
messageId : "missingSpaceAfter" ,
292
297
data : { tokenValue : "[" } ,
293
298
type : "MemberExpression" ,
299
+ line : 1 ,
294
300
column : 14 ,
295
- line : 1
301
+ endLine : 1 ,
302
+ endColumn : 15
296
303
}
297
304
]
298
305
} ,
@@ -305,8 +312,10 @@ ruleTester.run("computed-property-spacing", rule, {
305
312
messageId : "unexpectedSpaceAfter" ,
306
313
data : { tokenValue : "[" } ,
307
314
type : "MemberExpression" ,
308
- column : 14 ,
309
- line : 1
315
+ line : 1 ,
316
+ column : 15 ,
317
+ endLine : 1 ,
318
+ endColumn : 16
310
319
}
311
320
]
312
321
} ,
@@ -318,7 +327,11 @@ ruleTester.run("computed-property-spacing", rule, {
318
327
{
319
328
messageId : "unexpectedSpaceBefore" ,
320
329
data : { tokenValue : "]" } ,
321
- type : "MemberExpression"
330
+ type : "MemberExpression" ,
331
+ line : 1 ,
332
+ column : 16 ,
333
+ endLine : 1 ,
334
+ endColumn : 17
322
335
}
323
336
]
324
337
} ,
@@ -331,15 +344,19 @@ ruleTester.run("computed-property-spacing", rule, {
331
344
messageId : "unexpectedSpaceAfter" ,
332
345
data : { tokenValue : "[" } ,
333
346
type : "MemberExpression" ,
334
- column : 4 ,
335
- line : 1
347
+ line : 1 ,
348
+ column : 5 ,
349
+ endLine : 1 ,
350
+ endColumn : 6
336
351
} ,
337
352
{
338
353
messageId : "unexpectedSpaceBefore" ,
339
354
data : { tokenValue : "]" } ,
340
355
type : "MemberExpression" ,
341
- column : 10 ,
342
- line : 1
356
+ line : 1 ,
357
+ column : 9 ,
358
+ endLine : 1 ,
359
+ endColumn : 10
343
360
}
344
361
]
345
362
} ,
@@ -352,8 +369,10 @@ ruleTester.run("computed-property-spacing", rule, {
352
369
messageId : "unexpectedSpaceBefore" ,
353
370
data : { tokenValue : "]" } ,
354
371
type : "MemberExpression" ,
355
- column : 9 ,
356
- line : 1
372
+ line : 1 ,
373
+ column : 8 ,
374
+ endLine : 1 ,
375
+ endColumn : 9
357
376
}
358
377
]
359
378
} ,
@@ -366,8 +385,10 @@ ruleTester.run("computed-property-spacing", rule, {
366
385
messageId : "unexpectedSpaceAfter" ,
367
386
data : { tokenValue : "[" } ,
368
387
type : "MemberExpression" ,
369
- column : 4 ,
370
- line : 1
388
+ line : 1 ,
389
+ column : 5 ,
390
+ endLine : 1 ,
391
+ endColumn : 6
371
392
}
372
393
]
373
394
} ,
@@ -380,15 +401,128 @@ ruleTester.run("computed-property-spacing", rule, {
380
401
messageId : "missingSpaceAfter" ,
381
402
data : { tokenValue : "[" } ,
382
403
type : "MemberExpression" ,
404
+ line : 1 ,
383
405
column : 14 ,
384
- line : 1
406
+ endLine : 1 ,
407
+ endColumn : 15
385
408
} ,
386
409
{
387
410
messageId : "missingSpaceBefore" ,
388
411
data : { tokenValue : "]" } ,
389
412
type : "MemberExpression" ,
413
+ line : 1 ,
390
414
column : 16 ,
391
- line : 1
415
+ endLine : 1 ,
416
+ endColumn : 17
417
+ }
418
+ ]
419
+ } ,
420
+
421
+ // multiple spaces
422
+ {
423
+ code : "obj[ foo]" ,
424
+ output : "obj[foo]" ,
425
+ options : [ "never" ] ,
426
+ errors : [
427
+ {
428
+ messageId : "unexpectedSpaceAfter" ,
429
+ data : { tokenValue : "[" } ,
430
+ type : "MemberExpression" ,
431
+ line : 1 ,
432
+ column : 5 ,
433
+ endLine : 1 ,
434
+ endColumn : 9
435
+ }
436
+ ]
437
+ } ,
438
+ {
439
+ code : "obj[ foo ]" ,
440
+ output : "obj[foo]" ,
441
+ options : [ "never" ] ,
442
+ errors : [
443
+ {
444
+ messageId : "unexpectedSpaceAfter" ,
445
+ data : { tokenValue : "[" } ,
446
+ type : "MemberExpression" ,
447
+ line : 1 ,
448
+ column : 5 ,
449
+ endLine : 1 ,
450
+ endColumn : 7
451
+ } ,
452
+ {
453
+ messageId : "unexpectedSpaceBefore" ,
454
+ data : { tokenValue : "]" } ,
455
+ type : "MemberExpression" ,
456
+ line : 1 ,
457
+ column : 10 ,
458
+ endLine : 1 ,
459
+ endColumn : 12
460
+ }
461
+ ]
462
+ } ,
463
+ {
464
+ code : "obj[ foo ]" ,
465
+ output : "obj[foo]" ,
466
+ options : [ "never" ] ,
467
+ errors : [
468
+ {
469
+ messageId : "unexpectedSpaceAfter" ,
470
+ data : { tokenValue : "[" } ,
471
+ type : "MemberExpression" ,
472
+ line : 1 ,
473
+ column : 5 ,
474
+ endLine : 1 ,
475
+ endColumn : 8
476
+ } ,
477
+ {
478
+ messageId : "unexpectedSpaceBefore" ,
479
+ data : { tokenValue : "]" } ,
480
+ type : "MemberExpression" ,
481
+ line : 1 ,
482
+ column : 11 ,
483
+ endLine : 1 ,
484
+ endColumn : 12
485
+ }
486
+ ]
487
+ } ,
488
+ {
489
+ code : "obj[ foo + \n bar ]" ,
490
+ output : "obj[foo + \n bar]" ,
491
+ options : [ "never" ] ,
492
+ errors : [
493
+ {
494
+ messageId : "unexpectedSpaceAfter" ,
495
+ data : { tokenValue : "[" } ,
496
+ type : "MemberExpression" ,
497
+ line : 1 ,
498
+ column : 5 ,
499
+ endLine : 1 ,
500
+ endColumn : 6
501
+ } ,
502
+ {
503
+ messageId : "unexpectedSpaceBefore" ,
504
+ data : { tokenValue : "]" } ,
505
+ type : "MemberExpression" ,
506
+ line : 2 ,
507
+ column : 6 ,
508
+ endLine : 2 ,
509
+ endColumn : 9
510
+ }
511
+ ]
512
+ } ,
513
+ {
514
+ code : "obj[\n foo ]" ,
515
+ output : "obj[\n foo]" ,
516
+ options : [ "never" ] ,
517
+ errors : [
518
+ {
519
+ messageId : "unexpectedSpaceBefore" ,
520
+ data : { tokenValue : "]" } ,
521
+ type : "MemberExpression" ,
522
+ line : 2 ,
523
+ column : 5 ,
524
+ endLine : 2 ,
525
+ endColumn : 7
392
526
}
393
527
]
394
528
} ,
@@ -404,15 +538,19 @@ ruleTester.run("computed-property-spacing", rule, {
404
538
messageId : "missingSpaceAfter" ,
405
539
data : { tokenValue : "[" } ,
406
540
type : "Property" ,
541
+ line : 1 ,
407
542
column : 10 ,
408
- line : 1
543
+ endLine : 1 ,
544
+ endColumn : 11
409
545
} ,
410
546
{
411
547
messageId : "missingSpaceBefore" ,
412
548
data : { tokenValue : "]" } ,
413
549
type : "Property" ,
550
+ line : 1 ,
414
551
column : 12 ,
415
- line : 1
552
+ endLine : 1 ,
553
+ endColumn : 13
416
554
}
417
555
]
418
556
} ,
@@ -426,8 +564,10 @@ ruleTester.run("computed-property-spacing", rule, {
426
564
messageId : "missingSpaceAfter" ,
427
565
data : { tokenValue : "[" } ,
428
566
type : "Property" ,
567
+ line : 1 ,
429
568
column : 10 ,
430
- line : 1
569
+ endLine : 1 ,
570
+ endColumn : 11
431
571
}
432
572
]
433
573
} ,
@@ -441,8 +581,10 @@ ruleTester.run("computed-property-spacing", rule, {
441
581
messageId : "missingSpaceBefore" ,
442
582
data : { tokenValue : "]" } ,
443
583
type : "Property" ,
584
+ line : 1 ,
444
585
column : 13 ,
445
- line : 1
586
+ endLine : 1 ,
587
+ endColumn : 14
446
588
}
447
589
]
448
590
} ,
@@ -458,15 +600,19 @@ ruleTester.run("computed-property-spacing", rule, {
458
600
messageId : "unexpectedSpaceAfter" ,
459
601
data : { tokenValue : "[" } ,
460
602
type : "Property" ,
461
- column : 10 ,
462
- line : 1
603
+ line : 1 ,
604
+ column : 11 ,
605
+ endLine : 1 ,
606
+ endColumn : 12
463
607
} ,
464
608
{
465
609
messageId : "unexpectedSpaceBefore" ,
466
610
data : { tokenValue : "]" } ,
467
611
type : "Property" ,
468
- column : 14 ,
469
- line : 1
612
+ line : 1 ,
613
+ column : 13 ,
614
+ endLine : 1 ,
615
+ endColumn : 14
470
616
}
471
617
]
472
618
} ,
@@ -480,8 +626,10 @@ ruleTester.run("computed-property-spacing", rule, {
480
626
messageId : "unexpectedSpaceBefore" ,
481
627
data : { tokenValue : "]" } ,
482
628
type : "Property" ,
483
- column : 13 ,
484
- line : 1
629
+ line : 1 ,
630
+ column : 12 ,
631
+ endLine : 1 ,
632
+ endColumn : 13
485
633
}
486
634
]
487
635
} ,
@@ -495,8 +643,10 @@ ruleTester.run("computed-property-spacing", rule, {
495
643
messageId : "unexpectedSpaceAfter" ,
496
644
data : { tokenValue : "[" } ,
497
645
type : "Property" ,
498
- column : 10 ,
499
- line : 1
646
+ line : 1 ,
647
+ column : 11 ,
648
+ endLine : 1 ,
649
+ endColumn : 12
500
650
}
501
651
]
502
652
} ,
@@ -510,17 +660,15 @@ ruleTester.run("computed-property-spacing", rule, {
510
660
messageId : "unexpectedSpaceAfter" ,
511
661
data : { tokenValue : "[" } ,
512
662
type : "Property" ,
513
- column : 10 ,
514
- line : 1
663
+ line : 1 ,
664
+ column : 11 ,
665
+ endLine : 1 ,
666
+ endColumn : 12
515
667
}
516
668
]
517
669
} ,
518
670
519
- //------------------------------------------------------------------------------
520
- // Classes
521
- //------------------------------------------------------------------------------
522
-
523
- // never
671
+ // never - classes
524
672
{
525
673
code : "class A { [ a](){} }" ,
526
674
output : "class A { [a](){} }" ,
@@ -531,8 +679,10 @@ ruleTester.run("computed-property-spacing", rule, {
531
679
messageId : "unexpectedSpaceAfter" ,
532
680
data : { tokenValue : "[" } ,
533
681
type : "MethodDefinition" ,
534
- column : 11 ,
535
- line : 1
682
+ line : 1 ,
683
+ column : 12 ,
684
+ endLine : 1 ,
685
+ endColumn : 13
536
686
}
537
687
]
538
688
} ,
@@ -546,8 +696,10 @@ ruleTester.run("computed-property-spacing", rule, {
546
696
messageId : "unexpectedSpaceBefore" ,
547
697
data : { tokenValue : "]" } ,
548
698
type : "MethodDefinition" ,
549
- column : 37 ,
550
- line : 1
699
+ line : 1 ,
700
+ column : 36 ,
701
+ endLine : 1 ,
702
+ endColumn : 37
551
703
}
552
704
]
553
705
} ,
@@ -561,29 +713,37 @@ ruleTester.run("computed-property-spacing", rule, {
561
713
messageId : "unexpectedSpaceBefore" ,
562
714
data : { tokenValue : "]" } ,
563
715
type : "MethodDefinition" ,
564
- column : 18 ,
565
- line : 1
716
+ line : 1 ,
717
+ column : 17 ,
718
+ endLine : 1 ,
719
+ endColumn : 18
566
720
} ,
567
721
{
568
722
messageId : "unexpectedSpaceAfter" ,
569
723
data : { tokenValue : "[" } ,
570
724
type : "MethodDefinition" ,
571
- column : 28 ,
572
- line : 1
725
+ line : 1 ,
726
+ column : 29 ,
727
+ endLine : 1 ,
728
+ endColumn : 30
573
729
} ,
574
730
{
575
731
messageId : "unexpectedSpaceAfter" ,
576
732
data : { tokenValue : "[" } ,
577
733
type : "MethodDefinition" ,
578
- column : 81 ,
579
- line : 1
734
+ line : 1 ,
735
+ column : 82 ,
736
+ endLine : 1 ,
737
+ endColumn : 83
580
738
} ,
581
739
{
582
740
messageId : "unexpectedSpaceBefore" ,
583
741
data : { tokenValue : "]" } ,
584
742
type : "MethodDefinition" ,
585
- column : 104 ,
586
- line : 1
743
+ line : 1 ,
744
+ column : 103 ,
745
+ endLine : 1 ,
746
+ endColumn : 104
587
747
}
588
748
]
589
749
} ,
@@ -597,90 +757,114 @@ ruleTester.run("computed-property-spacing", rule, {
597
757
messageId : "unexpectedSpaceAfter" ,
598
758
data : { tokenValue : "[" } ,
599
759
type : "MethodDefinition" ,
600
- column : 13 ,
601
- line : 1
760
+ line : 1 ,
761
+ column : 14 ,
762
+ endLine : 1 ,
763
+ endColumn : 15
602
764
} ,
603
765
{
604
766
messageId : "unexpectedSpaceBefore" ,
605
767
data : { tokenValue : "]" } ,
606
768
type : "MethodDefinition" ,
607
- column : 17 ,
608
- line : 1
769
+ line : 1 ,
770
+ column : 16 ,
771
+ endLine : 1 ,
772
+ endColumn : 17
609
773
} ,
610
774
{
611
775
messageId : "unexpectedSpaceAfter" ,
612
776
data : { tokenValue : "[" } ,
613
777
type : "MethodDefinition" ,
614
- column : 27 ,
615
- line : 1
778
+ line : 1 ,
779
+ column : 28 ,
780
+ endLine : 1 ,
781
+ endColumn : 29
616
782
} ,
617
783
{
618
784
messageId : "unexpectedSpaceBefore" ,
619
785
data : { tokenValue : "]" } ,
620
786
type : "MethodDefinition" ,
621
- column : 31 ,
622
- line : 1
787
+ line : 1 ,
788
+ column : 30 ,
789
+ endLine : 1 ,
790
+ endColumn : 31
623
791
} ,
624
792
{
625
793
messageId : "unexpectedSpaceAfter" ,
626
794
data : { tokenValue : "[" } ,
627
795
type : "MethodDefinition" ,
628
- column : 41 ,
629
- line : 1
796
+ line : 1 ,
797
+ column : 42 ,
798
+ endLine : 1 ,
799
+ endColumn : 43
630
800
} ,
631
801
{
632
802
messageId : "unexpectedSpaceBefore" ,
633
803
data : { tokenValue : "]" } ,
634
804
type : "MethodDefinition" ,
635
- column : 45 ,
636
- line : 1
805
+ line : 1 ,
806
+ column : 44 ,
807
+ endLine : 1 ,
808
+ endColumn : 45
637
809
} ,
638
810
{
639
811
messageId : "unexpectedSpaceAfter" ,
640
812
data : { tokenValue : "[" } ,
641
813
type : "MethodDefinition" ,
642
- column : 61 ,
643
- line : 1
814
+ line : 1 ,
815
+ column : 62 ,
816
+ endLine : 1 ,
817
+ endColumn : 63
644
818
} ,
645
819
{
646
820
messageId : "unexpectedSpaceBefore" ,
647
821
data : { tokenValue : "]" } ,
648
822
type : "MethodDefinition" ,
649
- column : 65 ,
650
- line : 1
823
+ line : 1 ,
824
+ column : 64 ,
825
+ endLine : 1 ,
826
+ endColumn : 65
651
827
} ,
652
828
{
653
829
messageId : "unexpectedSpaceAfter" ,
654
830
data : { tokenValue : "[" } ,
655
831
type : "MethodDefinition" ,
656
- column : 82 ,
657
- line : 1
832
+ line : 1 ,
833
+ column : 83 ,
834
+ endLine : 1 ,
835
+ endColumn : 84
658
836
} ,
659
837
{
660
838
messageId : "unexpectedSpaceBefore" ,
661
839
data : { tokenValue : "]" } ,
662
840
type : "MethodDefinition" ,
663
- column : 86 ,
664
- line : 1
841
+ line : 1 ,
842
+ column : 85 ,
843
+ endLine : 1 ,
844
+ endColumn : 86
665
845
} ,
666
846
{
667
847
messageId : "unexpectedSpaceAfter" ,
668
848
data : { tokenValue : "[" } ,
669
849
type : "MethodDefinition" ,
670
- column : 103 ,
671
- line : 1
850
+ line : 1 ,
851
+ column : 104 ,
852
+ endLine : 1 ,
853
+ endColumn : 105
672
854
} ,
673
855
{
674
856
messageId : "unexpectedSpaceBefore" ,
675
857
data : { tokenValue : "]" } ,
676
858
type : "MethodDefinition" ,
677
- column : 107 ,
678
- line : 1
859
+ line : 1 ,
860
+ column : 106 ,
861
+ endLine : 1 ,
862
+ endColumn : 107
679
863
}
680
864
]
681
865
} ,
682
866
683
- // always
867
+ // always - classes
684
868
{
685
869
code : "class A { [ a](){} }" ,
686
870
output : "class A { [ a ](){} }" ,
@@ -691,8 +875,10 @@ ruleTester.run("computed-property-spacing", rule, {
691
875
messageId : "missingSpaceBefore" ,
692
876
data : { tokenValue : "]" } ,
693
877
type : "MethodDefinition" ,
878
+ line : 1 ,
694
879
column : 14 ,
695
- line : 1
880
+ endLine : 1 ,
881
+ endColumn : 15
696
882
}
697
883
]
698
884
} ,
@@ -706,8 +892,10 @@ ruleTester.run("computed-property-spacing", rule, {
706
892
messageId : "missingSpaceAfter" ,
707
893
data : { tokenValue : "[" } ,
708
894
type : "MethodDefinition" ,
895
+ line : 1 ,
709
896
column : 36 ,
710
- line : 1
897
+ endLine : 1 ,
898
+ endColumn : 37
711
899
}
712
900
]
713
901
} ,
@@ -721,29 +909,37 @@ ruleTester.run("computed-property-spacing", rule, {
721
909
messageId : "missingSpaceAfter" ,
722
910
data : { tokenValue : "[" } ,
723
911
type : "MethodDefinition" ,
912
+ line : 1 ,
724
913
column : 15 ,
725
- line : 1
914
+ endLine : 1 ,
915
+ endColumn : 16
726
916
} ,
727
917
{
728
918
messageId : "missingSpaceBefore" ,
729
919
data : { tokenValue : "]" } ,
730
920
type : "MethodDefinition" ,
921
+ line : 1 ,
731
922
column : 31 ,
732
- line : 1
923
+ endLine : 1 ,
924
+ endColumn : 32
733
925
} ,
734
926
{
735
927
messageId : "missingSpaceBefore" ,
736
928
data : { tokenValue : "]" } ,
737
929
type : "MethodDefinition" ,
930
+ line : 1 ,
738
931
column : 84 ,
739
- line : 1
932
+ endLine : 1 ,
933
+ endColumn : 85
740
934
} ,
741
935
{
742
936
messageId : "missingSpaceAfter" ,
743
937
data : { tokenValue : "[" } ,
744
938
type : "MethodDefinition" ,
939
+ line : 1 ,
745
940
column : 101 ,
746
- line : 1
941
+ endLine : 1 ,
942
+ endColumn : 102
747
943
}
748
944
]
749
945
} ,
@@ -757,88 +953,114 @@ ruleTester.run("computed-property-spacing", rule, {
757
953
messageId : "missingSpaceAfter" ,
758
954
data : { tokenValue : "[" } ,
759
955
type : "MethodDefinition" ,
956
+ line : 1 ,
760
957
column : 13 ,
761
- line : 1
958
+ endLine : 1 ,
959
+ endColumn : 14
762
960
} ,
763
961
{
764
962
messageId : "missingSpaceBefore" ,
765
963
data : { tokenValue : "]" } ,
766
964
type : "MethodDefinition" ,
965
+ line : 1 ,
767
966
column : 15 ,
768
- line : 1
967
+ endLine : 1 ,
968
+ endColumn : 16
769
969
} ,
770
970
{
771
971
messageId : "missingSpaceAfter" ,
772
972
data : { tokenValue : "[" } ,
773
973
type : "MethodDefinition" ,
974
+ line : 1 ,
774
975
column : 25 ,
775
- line : 1
976
+ endLine : 1 ,
977
+ endColumn : 26
776
978
} ,
777
979
{
778
980
messageId : "missingSpaceBefore" ,
779
981
data : { tokenValue : "]" } ,
780
982
type : "MethodDefinition" ,
983
+ line : 1 ,
781
984
column : 27 ,
782
- line : 1
985
+ endLine : 1 ,
986
+ endColumn : 28
783
987
} ,
784
988
{
785
989
messageId : "missingSpaceAfter" ,
786
990
data : { tokenValue : "[" } ,
787
991
type : "MethodDefinition" ,
992
+ line : 1 ,
788
993
column : 37 ,
789
- line : 1
994
+ endLine : 1 ,
995
+ endColumn : 38
790
996
} ,
791
997
{
792
998
messageId : "missingSpaceBefore" ,
793
999
data : { tokenValue : "]" } ,
794
1000
type : "MethodDefinition" ,
1001
+ line : 1 ,
795
1002
column : 39 ,
796
- line : 1
1003
+ endLine : 1 ,
1004
+ endColumn : 40
797
1005
} ,
798
1006
{
799
1007
messageId : "missingSpaceAfter" ,
800
1008
data : { tokenValue : "[" } ,
801
1009
type : "MethodDefinition" ,
1010
+ line : 1 ,
802
1011
column : 55 ,
803
- line : 1
1012
+ endLine : 1 ,
1013
+ endColumn : 56
804
1014
} ,
805
1015
{
806
1016
messageId : "missingSpaceBefore" ,
807
1017
data : { tokenValue : "]" } ,
808
1018
type : "MethodDefinition" ,
1019
+ line : 1 ,
809
1020
column : 57 ,
810
- line : 1
1021
+ endLine : 1 ,
1022
+ endColumn : 58
811
1023
} ,
812
1024
{
813
1025
messageId : "missingSpaceAfter" ,
814
1026
data : { tokenValue : "[" } ,
815
1027
type : "MethodDefinition" ,
1028
+ line : 1 ,
816
1029
column : 74 ,
817
- line : 1
1030
+ endLine : 1 ,
1031
+ endColumn : 75
818
1032
} ,
819
1033
{
820
1034
messageId : "missingSpaceBefore" ,
821
1035
data : { tokenValue : "]" } ,
822
1036
type : "MethodDefinition" ,
1037
+ line : 1 ,
823
1038
column : 76 ,
824
- line : 1
1039
+ endLine : 1 ,
1040
+ endColumn : 77
825
1041
} ,
826
1042
{
827
1043
messageId : "missingSpaceAfter" ,
828
1044
data : { tokenValue : "[" } ,
829
1045
type : "MethodDefinition" ,
1046
+ line : 1 ,
830
1047
column : 93 ,
831
- line : 1
1048
+ endLine : 1 ,
1049
+ endColumn : 94
832
1050
} ,
833
1051
{
834
1052
messageId : "missingSpaceBefore" ,
835
1053
data : { tokenValue : "]" } ,
836
1054
type : "MethodDefinition" ,
1055
+ line : 1 ,
837
1056
column : 95 ,
838
- line : 1
1057
+ endLine : 1 ,
1058
+ endColumn : 96
839
1059
}
840
1060
]
841
1061
} ,
1062
+
1063
+ // handling of parens and comments
842
1064
{
843
1065
code : [
844
1066
"const foo = {" ,
@@ -857,15 +1079,19 @@ ruleTester.run("computed-property-spacing", rule, {
857
1079
messageId : "missingSpaceAfter" ,
858
1080
data : { tokenValue : "[" } ,
859
1081
type : "Property" ,
1082
+ line : 2 ,
860
1083
column : 3 ,
861
- line : 2
1084
+ endLine : 2 ,
1085
+ endColumn : 4
862
1086
} ,
863
1087
{
864
1088
messageId : "missingSpaceBefore" ,
865
1089
data : { tokenValue : "]" } ,
866
1090
type : "Property" ,
1091
+ line : 2 ,
867
1092
column : 7 ,
868
- line : 2
1093
+ endLine : 2 ,
1094
+ endColumn : 8
869
1095
}
870
1096
]
871
1097
} ,
@@ -887,15 +1113,19 @@ ruleTester.run("computed-property-spacing", rule, {
887
1113
messageId : "missingSpaceAfter" ,
888
1114
data : { tokenValue : "[" } ,
889
1115
type : "Property" ,
1116
+ line : 2 ,
890
1117
column : 3 ,
891
- line : 2
1118
+ endLine : 2 ,
1119
+ endColumn : 4
892
1120
} ,
893
1121
{
894
1122
messageId : "missingSpaceBefore" ,
895
1123
data : { tokenValue : "]" } ,
896
1124
type : "Property" ,
1125
+ line : 2 ,
897
1126
column : 9 ,
898
- line : 2
1127
+ endLine : 2 ,
1128
+ endColumn : 10
899
1129
}
900
1130
]
901
1131
} ,
@@ -917,15 +1147,19 @@ ruleTester.run("computed-property-spacing", rule, {
917
1147
messageId : "unexpectedSpaceAfter" ,
918
1148
data : { tokenValue : "[" } ,
919
1149
type : "Property" ,
920
- column : 3 ,
921
- line : 2
1150
+ line : 2 ,
1151
+ column : 4 ,
1152
+ endLine : 2 ,
1153
+ endColumn : 5
922
1154
} ,
923
1155
{
924
1156
messageId : "unexpectedSpaceBefore" ,
925
1157
data : { tokenValue : "]" } ,
926
1158
type : "Property" ,
927
- column : 11 ,
928
- line : 2
1159
+ line : 2 ,
1160
+ column : 10 ,
1161
+ endLine : 2 ,
1162
+ endColumn : 11
929
1163
}
930
1164
]
931
1165
} ,
@@ -947,15 +1181,19 @@ ruleTester.run("computed-property-spacing", rule, {
947
1181
messageId : "missingSpaceAfter" ,
948
1182
data : { tokenValue : "[" } ,
949
1183
type : "Property" ,
1184
+ line : 2 ,
950
1185
column : 3 ,
951
- line : 2
1186
+ endLine : 2 ,
1187
+ endColumn : 4
952
1188
} ,
953
1189
{
954
1190
messageId : "missingSpaceBefore" ,
955
1191
data : { tokenValue : "]" } ,
956
1192
type : "Property" ,
1193
+ line : 2 ,
957
1194
column : 15 ,
958
- line : 2
1195
+ endLine : 2 ,
1196
+ endColumn : 16
959
1197
}
960
1198
]
961
1199
} ,
@@ -977,15 +1215,19 @@ ruleTester.run("computed-property-spacing", rule, {
977
1215
messageId : "unexpectedSpaceAfter" ,
978
1216
data : { tokenValue : "[" } ,
979
1217
type : "Property" ,
980
- column : 3 ,
981
- line : 2
1218
+ line : 2 ,
1219
+ column : 4 ,
1220
+ endLine : 2 ,
1221
+ endColumn : 5
982
1222
} ,
983
1223
{
984
1224
messageId : "unexpectedSpaceBefore" ,
985
1225
data : { tokenValue : "]" } ,
986
1226
type : "Property" ,
987
- column : 17 ,
988
- line : 2
1227
+ line : 2 ,
1228
+ column : 16 ,
1229
+ endLine : 2 ,
1230
+ endColumn : 17
989
1231
}
990
1232
]
991
1233
} ,
@@ -1007,29 +1249,37 @@ ruleTester.run("computed-property-spacing", rule, {
1007
1249
messageId : "missingSpaceAfter" ,
1008
1250
data : { tokenValue : "[" } ,
1009
1251
type : "Property" ,
1252
+ line : 2 ,
1010
1253
column : 3 ,
1011
- line : 2
1254
+ endLine : 2 ,
1255
+ endColumn : 4
1012
1256
} ,
1013
1257
{
1014
1258
messageId : "missingSpaceAfter" ,
1015
1259
data : { tokenValue : "[" } ,
1016
1260
type : "MemberExpression" ,
1261
+ line : 2 ,
1017
1262
column : 5 ,
1018
- line : 2
1263
+ endLine : 2 ,
1264
+ endColumn : 6
1019
1265
} ,
1020
1266
{
1021
1267
messageId : "missingSpaceBefore" ,
1022
1268
data : { tokenValue : "]" } ,
1023
1269
type : "MemberExpression" ,
1270
+ line : 2 ,
1024
1271
column : 7 ,
1025
- line : 2
1272
+ endLine : 2 ,
1273
+ endColumn : 8
1026
1274
} ,
1027
1275
{
1028
1276
messageId : "missingSpaceBefore" ,
1029
1277
data : { tokenValue : "]" } ,
1030
1278
type : "Property" ,
1279
+ line : 2 ,
1031
1280
column : 8 ,
1032
- line : 2
1281
+ endLine : 2 ,
1282
+ endColumn : 9
1033
1283
}
1034
1284
]
1035
1285
} ,
@@ -1051,29 +1301,37 @@ ruleTester.run("computed-property-spacing", rule, {
1051
1301
messageId : "unexpectedSpaceAfter" ,
1052
1302
data : { tokenValue : "[" } ,
1053
1303
type : "Property" ,
1054
- column : 3 ,
1055
- line : 2
1304
+ line : 2 ,
1305
+ column : 4 ,
1306
+ endLine : 2 ,
1307
+ endColumn : 5
1056
1308
} ,
1057
1309
{
1058
1310
messageId : "unexpectedSpaceAfter" ,
1059
1311
data : { tokenValue : "[" } ,
1060
1312
type : "MemberExpression" ,
1061
- column : 6 ,
1062
- line : 2
1313
+ line : 2 ,
1314
+ column : 7 ,
1315
+ endLine : 2 ,
1316
+ endColumn : 8
1063
1317
} ,
1064
1318
{
1065
1319
messageId : "unexpectedSpaceBefore" ,
1066
1320
data : { tokenValue : "]" } ,
1067
1321
type : "MemberExpression" ,
1068
- column : 10 ,
1069
- line : 2
1322
+ line : 2 ,
1323
+ column : 9 ,
1324
+ endLine : 2 ,
1325
+ endColumn : 10
1070
1326
} ,
1071
1327
{
1072
1328
messageId : "unexpectedSpaceBefore" ,
1073
1329
data : { tokenValue : "]" } ,
1074
1330
type : "Property" ,
1075
- column : 12 ,
1076
- line : 2
1331
+ line : 2 ,
1332
+ column : 11 ,
1333
+ endLine : 2 ,
1334
+ endColumn : 12
1077
1335
}
1078
1336
]
1079
1337
} ,
@@ -1095,22 +1353,28 @@ ruleTester.run("computed-property-spacing", rule, {
1095
1353
messageId : "missingSpaceAfter" ,
1096
1354
data : { tokenValue : "[" } ,
1097
1355
type : "Property" ,
1356
+ line : 2 ,
1098
1357
column : 3 ,
1099
- line : 2
1358
+ endLine : 2 ,
1359
+ endColumn : 4
1100
1360
} ,
1101
1361
{
1102
1362
messageId : "missingSpaceAfter" ,
1103
1363
data : { tokenValue : "[" } ,
1104
1364
type : "MemberExpression" ,
1365
+ line : 2 ,
1105
1366
column : 5 ,
1106
- line : 2
1367
+ endLine : 2 ,
1368
+ endColumn : 6
1107
1369
} ,
1108
1370
{
1109
1371
messageId : "missingSpaceBefore" ,
1110
1372
data : { tokenValue : "]" } ,
1111
1373
type : "Property" ,
1374
+ line : 2 ,
1112
1375
column : 18 ,
1113
- line : 2
1376
+ endLine : 2 ,
1377
+ endColumn : 19
1114
1378
}
1115
1379
]
1116
1380
} ,
@@ -1132,22 +1396,28 @@ ruleTester.run("computed-property-spacing", rule, {
1132
1396
messageId : "unexpectedSpaceAfter" ,
1133
1397
data : { tokenValue : "[" } ,
1134
1398
type : "Property" ,
1135
- column : 3 ,
1136
- line : 2
1399
+ line : 2 ,
1400
+ column : 4 ,
1401
+ endLine : 2 ,
1402
+ endColumn : 5
1137
1403
} ,
1138
1404
{
1139
1405
messageId : "unexpectedSpaceAfter" ,
1140
1406
data : { tokenValue : "[" } ,
1141
1407
type : "MemberExpression" ,
1142
- column : 10 ,
1143
- line : 2
1408
+ line : 2 ,
1409
+ column : 11 ,
1410
+ endLine : 2 ,
1411
+ endColumn : 12
1144
1412
} ,
1145
1413
{
1146
1414
messageId : "unexpectedSpaceBefore" ,
1147
1415
data : { tokenValue : "]" } ,
1148
1416
type : "MemberExpression" ,
1149
- column : 19 ,
1150
- line : 2
1417
+ line : 2 ,
1418
+ column : 18 ,
1419
+ endLine : 2 ,
1420
+ endColumn : 19
1151
1421
}
1152
1422
]
1153
1423
}
0 commit comments