-
Notifications
You must be signed in to change notification settings - Fork 5
/
report.txt
4989 lines (4988 loc) · 509 KB
/
report.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
build/assets.js: line 16, col 24, eval is evil.
build/assets.js: line 32, col 10, Don't make functions within a loop.
build/ShaderGeneration.js: line 19, col 2, Mixed spaces and tabs.
build/ShaderGeneration.js: line 19, col 42, Use '===' to compare with '0'.
build/ShaderGeneration.js: line 31, col 38, Use '===' to compare with '0'.
build/ShaderGeneration.js: line 45, col 13, Don't make functions within a loop.
build/ShaderGeneration.js: line 44, col 14, Missing semicolon.
build/ShaderGeneration.js: line 47, col 10, Unnecessary semicolon.
build/chunk.js: line 19, col 1, Mixed spaces and tabs.
build/chunk.js: line 25, col 1, Mixed spaces and tabs.
build/chunk.js: line 39, col 6, Mixed spaces and tabs.
build/chunk.js: line 41, col 4, Mixed spaces and tabs.
build/chunk.js: line 42, col 4, Mixed spaces and tabs.
build/chunk.js: line 43, col 4, Mixed spaces and tabs.
build/chunk.js: line 44, col 8, Mixed spaces and tabs.
build/chunk.js: line 45, col 4, Mixed spaces and tabs.
build/chunk.js: line 46, col 4, Mixed spaces and tabs.
build/chunk.js: line 47, col 4, Mixed spaces and tabs.
build/chunk.js: line 50, col 4, Mixed spaces and tabs.
build/chunk.js: line 51, col 4, Mixed spaces and tabs.
build/chunk.js: line 53, col 4, Mixed spaces and tabs.
build/chunk.js: line 54, col 4, Mixed spaces and tabs.
build/chunk.js: line 55, col 2, Mixed spaces and tabs.
build/chunk.js: line 70, col 4, Mixed spaces and tabs.
build/chunk.js: line 71, col 4, Mixed spaces and tabs.
build/chunk.js: line 72, col 4, Mixed spaces and tabs.
build/chunk.js: line 73, col 4, Mixed spaces and tabs.
build/chunk.js: line 74, col 4, Mixed spaces and tabs.
build/chunk.js: line 74, col 36, Use '===' to compare with '0'.
build/chunk.js: line 75, col 4, Mixed spaces and tabs.
build/chunk.js: line 76, col 4, Mixed spaces and tabs.
build/chunk.js: line 77, col 4, Mixed spaces and tabs.
build/chunk.js: line 78, col 4, Mixed spaces and tabs.
build/chunk.js: line 79, col 4, Mixed spaces and tabs.
build/chunk.js: line 80, col 4, Mixed spaces and tabs.
build/chunk.js: line 81, col 4, Mixed spaces and tabs.
build/chunk.js: line 83, col 4, Mixed spaces and tabs.
build/chunk.js: line 83, col 40, Use '===' to compare with '0'.
build/chunk.js: line 84, col 4, Mixed spaces and tabs.
build/chunk.js: line 85, col 4, Mixed spaces and tabs.
build/chunk.js: line 86, col 4, Mixed spaces and tabs.
build/chunk.js: line 87, col 4, Mixed spaces and tabs.
build/chunk.js: line 88, col 4, Mixed spaces and tabs.
build/chunk.js: line 131, col 19, 'x' is already defined.
build.js: line 3, col 32, Missing semicolon.
build.js: line 4, col 36, Missing semicolon.
build.js: line 29, col 5, Missing semicolon.
data/assets/models/Hovercraft.js: line 3, col 10812, Extra comma.
data/assets/models/Hovercraft.js: line 6, col 11064, Extra comma.
data/assets/models/Hovercraft.js: line 7, col 6848, Extra comma.
node_modules/stitch/test/fixtures/link/custom_exports.js: line 3, col 2, Missing semicolon.
node_modules/stitch/test/fixtures/link/circular/b.js: line 4, col 2, Missing semicolon.
node_modules/stitch/test/fixtures/default/custom_exports.js: line 3, col 2, Missing semicolon.
node_modules/stitch/test/fixtures/default/circular/b.js: line 4, col 2, Missing semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 4, col 9, ['auto'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 104, col 9, ['waterfall'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 213, col 9, ['parallel'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 269, col 53, Extra comma.
node_modules/stitch/node_modules/async/test/test-async.js: line 307, col 9, ['series'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 365, col 53, Extra comma.
node_modules/stitch/node_modules/async/test/test-async.js: line 403, col 9, ['iterator'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 459, col 9, ['forEach'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 493, col 9, ['forEachSeries'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 530, col 9, ['forEachLimit'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 611, col 9, ['map'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 646, col 9, ['mapSeries'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 670, col 9, ['reduce'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 684, col 52, Missing semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 711, col 9, ['reduceRight'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 730, col 9, ['filter'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 750, col 9, ['filterSeries'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 769, col 9, ['reject'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 789, col 9, ['rejectSeries'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 876, col 9, ['detect'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 910, col 9, ['detectSeries'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 944, col 9, ['sortBy'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 953, col 9, ['apply'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 956, col 68, Missing semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 964, col 58, Missing semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1037, col 9, ['nextTick'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1098, col 9, ['concat'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1129, col 9, ['concatSeries'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1150, col 9, ['until'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1171, col 45, Extra comma.
node_modules/stitch/node_modules/async/test/test-async.js: line 1179, col 9, ['whilst'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1200, col 45, Extra comma.
node_modules/stitch/node_modules/async/test/test-async.js: line 1208, col 9, ['queue'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1349, col 9, ['memoize'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1373, col 9, ['unmemoize'] is better written in dot notation.
node_modules/stitch/node_modules/async/test/test-async.js: line 1397, col 2, Missing semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1412, col 2, Missing semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1469, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1474, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1479, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1484, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1504, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1509, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1514, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1519, col 6, Unnecessary semicolon.
node_modules/stitch/node_modules/async/test/test-async.js: line 1546, col 28, Use '===' to compare with '0'.
node_modules/stitch/node_modules/async/test/test-async.js: line 1551, col 24, Use '===' to compare with '0'.
node_modules/stitch/node_modules/async/test/test-async.js: line 1551, col 44, Use '===' to compare with '0'.
node_modules/stitch/node_modules/async/test/test-async.js: line 1568, col 20, Extra comma.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 152, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 153, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 153, Expected an identifier and instead saw ','.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 153, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 154, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 192, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 192, Expected an identifier and instead saw '='.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 192, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 193, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 193, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 194, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 194, Expected an identifier and instead saw ','.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 194, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 195, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 195, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 196, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 290, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 385, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 387, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 387, Expected an identifier and instead saw ','.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 387, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 388, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 388, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 389, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 472, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 474, Expected ')' to match '(' from line 1 and instead saw ','.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 475, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 475, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 476, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 476, Expected an identifier and instead saw ')'.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 476, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 477, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 583, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 593, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 701, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 788, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 809, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 817, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 817, Expected an identifier and instead saw ','.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 817, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 818, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 915, Expected ')' to match '(' from line 1 and instead saw ','.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 916, Expected ':' and instead saw 'c'.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 917, Expected an identifier and instead saw '='.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 917, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 918, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 926, Missing name in function declaration.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 930, Expected an identifier and instead saw ')'.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 930, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 931, Missing semicolon.
node_modules/stitch/node_modules/async/dist/async.min.js: line 1, col 931, Too many errors. (100% scanned).
node_modules/stitch/node_modules/async/lib/async.js: line 166, col 14, Don't make functions within a loop.
node_modules/stitch/node_modules/async/lib/async.js: line 604, col 50, Use '===' to compare with '0'.
node_modules/stitch/node_modules/async/lib/async.js: line 611, col 64, Use '===' to compare with '0'.
node_modules/stitch/node_modules/async/lib/async.js: line 687, col 8, Missing semicolon.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 496, col 19, Unexpected /*member 'assert'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 508, col 31, Unexpected /*member 'async'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 510, col 49, Unexpected /*member 'exports'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 511, col 16, Unexpected /*member 'exports'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 514, col 14, Unexpected /*member 'async'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 517, col 11, Unexpected /*member 'noConflict'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 518, col 14, Unexpected /*member 'async'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 525, col 17, Unexpected /*member 'forEach'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 526, col 24, Unexpected /*member 'forEach'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 534, col 17, Unexpected /*member 'map'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 535, col 24, Unexpected /*member 'map'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 545, col 17, Unexpected /*member 'reduce'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 546, col 24, Unexpected /*member 'reduce'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 555, col 20, Unexpected /*member 'keys'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 556, col 27, Unexpected /*member 'keys'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 568, col 17, Unexpected /*member 'indexOf'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 569, col 24, Unexpected /*member 'indexOf'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 582, col 11, Unexpected /*member 'nextTick'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 583, col 57, Unexpected /*member 'nextTick'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 587, col 21, Unexpected /*member 'nextTick'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 591, col 11, Unexpected /*member 'forEach'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 612, col 11, Unexpected /*member 'forEachSeries'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 641, col 42, Unexpected /*member 'forEach'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 641, col 51, Unexpected /*member 'concat'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 647, col 42, Unexpected /*member 'forEachSeries'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 647, col 57, Unexpected /*member 'concat'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 655, col 28, Unexpected /*member 'index'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 655, col 38, Unexpected /*member 'value'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 658, col 24, Unexpected /*member 'value'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 659, col 27, Unexpected /*member 'index'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 666, col 11, Unexpected /*member 'map'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 667, col 11, Unexpected /*member 'mapSeries'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 672, col 11, Unexpected /*member 'reduce'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 673, col 15, Unexpected /*member 'forEachSeries'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 683, col 11, Unexpected /*member 'inject'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 683, col 26, Unexpected /*member 'reduce'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 685, col 11, Unexpected /*member 'foldl'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 685, col 25, Unexpected /*member 'reduce'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 687, col 11, Unexpected /*member 'reduceRight'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 690, col 12, Unexpected /*member 'reverse'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 691, col 15, Unexpected /*member 'reduce'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 694, col 11, Unexpected /*member 'foldr'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 694, col 25, Unexpected /*member 'reduceRight'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 699, col 28, Unexpected /*member 'index'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 699, col 38, Unexpected /*member 'value'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 702, col 24, Unexpected /*member 'value'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 709, col 35, Unexpected /*member 'sort'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 710, col 26, Unexpected /*member 'index'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 710, col 36, Unexpected /*member 'index'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 712, col 26, Unexpected /*member 'value'.
node_modules/stitch/node_modules/async/deps/nodeunit.js: line 712, col 26, Too many errors. (36% scanned).
node_modules/stitch/lib/stitch.js: line 7, col 25, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 7, col 25, Expected an identifier and instead saw ','.
node_modules/stitch/lib/stitch.js: line 7, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 7, col 26, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 7, col 49, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 7, col 49, Expected an identifier and instead saw ','.
node_modules/stitch/lib/stitch.js: line 7, col 49, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 7, col 50, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 7, col 67, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 7, col 67, Expected an identifier and instead saw ','.
node_modules/stitch/lib/stitch.js: line 7, col 67, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 7, col 68, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 40, col 12, 'err' is already defined.
node_modules/stitch/lib/stitch.js: line 45, col 63, Unnecessary semicolon.
node_modules/stitch/lib/stitch.js: line 46, col 73, Unnecessary semicolon.
node_modules/stitch/lib/stitch.js: line 47, col 53, Use '!==' to compare with 'null'.
node_modules/stitch/lib/stitch.js: line 48, col 43, Use '!==' to compare with 'null'.
node_modules/stitch/lib/stitch.js: line 49, col 57, Use '!==' to compare with 'null'.
node_modules/stitch/lib/stitch.js: line 51, col 43, Use '!==' to compare with 'null'.
node_modules/stitch/lib/stitch.js: line 82, col 32, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 82, col 32, Expected an identifier and instead saw ','.
node_modules/stitch/lib/stitch.js: line 82, col 32, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 82, col 33, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 82, col 59, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 82, col 59, Expected an identifier and instead saw ','.
node_modules/stitch/lib/stitch.js: line 82, col 59, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 82, col 60, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 179, col 26, Expected a conditional expression and instead saw an assignment.
node_modules/stitch/lib/stitch.js: line 183, col 26, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 183, col 27, Expected an identifier and instead saw '='.
node_modules/stitch/lib/stitch.js: line 183, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 183, col 28, Missing semicolon.
node_modules/stitch/lib/stitch.js: line 183, col 29, Expected an assignment or function call and instead saw an expression.
node_modules/stitch/lib/stitch.js: line 195, col 18, 'err' is already defined.
node_modules/stitch/lib/stitch.js: line 199, col 13, Do not assign to the exception parameter.
node_modules/stitch/lib/stitch.js: line 220, col 47, Use '!==' to compare with 'null'.
node_modules/stitch/lib/stitch.js: line 220, col 79, Use '!==' to compare with 'null'.
node_modules/socket.io/support/node-websocket-client/test/test-readonly-attrs.js: line 40, col 14, 'e' is already defined.
node_modules/socket.io/support/node-websocket-client/examples/client.js: line 10, col 2, Missing semicolon.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 59, col 16, 'i' is already defined.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 60, col 17, 'pos' is already defined.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 99, col 2, Missing semicolon.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 187, col 16, It is not necessary to initialize 'stream' to 'undefined'.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 230, col 17, Unnecessary semicolon.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 240, col 29, Use '===' to compare with '0'.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 324, col 22, Use '===' to compare with '0'.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 456, col 25, ['Origin'] is better written in dot notation.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 489, col 19, 'u' is already defined.
node_modules/socket.io/support/node-websocket-client/lib/websocket.js: line 506, col 22, It is not necessary to initialize 'data' to 'undefined'.
node_modules/socket.io/test/stores.redis.test.js: line 8, col 30, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 9, col 28, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 10, col 30, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 21, col 7, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.redis.test.js: line 20, col 17, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 21, col 27, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.redis.test.js: line 36, col 7, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.redis.test.js: line 35, col 17, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 37, col 7, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.redis.test.js: line 36, col 17, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 38, col 7, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.redis.test.js: line 37, col 17, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 38, col 25, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 49, col 28, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 56, col 51, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 69, col 7, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.redis.test.js: line 68, col 21, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 69, col 35, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 83, col 25, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 83, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 87, col 27, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 87, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 94, col 31, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 94, col 31, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 125, col 56, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 128, col 32, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 129, col 37, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 140, col 25, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 140, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 144, col 27, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 144, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 148, col 43, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 149, col 51, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 154, col 29, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 154, col 29, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 158, col 31, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 158, col 31, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 171, col 56, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 174, col 32, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 175, col 37, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 186, col 25, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 186, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 190, col 27, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.redis.test.js: line 190, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.redis.test.js: line 213, col 32, Bad line breaking before ','.
node_modules/socket.io/test/stores.redis.test.js: line 214, col 53, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 12, col 29, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 13, col 17, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 14, col 26, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 15, col 28, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 35, col 13, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 38, col 2, Unnecessary semicolon.
node_modules/socket.io/test/common.js: line 56, col 29, Unescaped '{'.
node_modules/socket.io/test/common.js: line 56, col 38, Unescaped '}'.
node_modules/socket.io/test/common.js: line 73, col 55, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/common.js: line 194, col 41, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/common.js: line 229, col 7, Bad line breaking before ','.
node_modules/socket.io/test/common.js: line 231, col 9, Bad line breaking before '+'.
node_modules/socket.io/test/common.js: line 233, col 2, Unnecessary semicolon.
node_modules/socket.io/test/common.js: line 239, col 20, The '__proto__' property is deprecated.
node_modules/socket.io/test/io.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 13, col 22, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 14, col 26, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 15, col 28, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 16, col 32, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 31, col 48, Expected an identifier and instead saw 'instanceof' (a reserved word).
node_modules/socket.io/test/io.test.js: line 41, col 28, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 44, col 28, Expected an identifier and instead saw 'instanceof' (a reserved word).
node_modules/socket.io/test/io.test.js: line 57, col 36, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 58, col 31, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 59, col 18, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 76, col 65, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 78, col 27, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 79, col 31, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 85, col 15, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 86, col 15, Bad line breaking before ','.
node_modules/socket.io/test/io.test.js: line 109, col 27, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 11, col 30, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 12, col 26, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 23, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 29, col 14, 'port' is already defined.
node_modules/socket.io/test/manager.test.js: line 29, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 30, col 12, 'io' is already defined.
node_modules/socket.io/test/manager.test.js: line 43, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 47, col 34, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/manager.test.js: line 47, col 34, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/manager.test.js: line 48, col 35, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/manager.test.js: line 48, col 35, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/manager.test.js: line 51, col 14, 'port' is already defined.
node_modules/socket.io/test/manager.test.js: line 51, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 52, col 12, 'io' is already defined.
node_modules/socket.io/test/manager.test.js: line 58, col 34, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/manager.test.js: line 58, col 34, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/manager.test.js: line 64, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 82, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 83, col 44, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 103, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 104, col 44, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 130, col 31, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 131, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 152, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 153, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 171, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 172, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 186, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 187, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 201, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 202, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 208, col 8, Unnecessary semicolon.
node_modules/socket.io/test/manager.test.js: line 224, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 225, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 230, col 21, Missing '()' invoking a constructor.
node_modules/socket.io/test/manager.test.js: line 231, col 8, Unnecessary semicolon.
node_modules/socket.io/test/manager.test.js: line 247, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 248, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 264, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 265, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 281, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 282, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 298, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 299, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 315, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 316, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 332, col 18, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 333, col 29, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 334, col 25, Bad line breaking before ','.
node_modules/socket.io/test/manager.test.js: line 334, col 25, Too many errors. (58% scanned).
node_modules/socket.io/test/transports.xhr-polling.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 14, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 15, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 24, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 30, col 22, The '__proto__' property is deprecated.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 55, col 55, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 62, col 37, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 76, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 85, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 89, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 97, col 6, Unnecessary semicolon.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 107, col 19, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 108, col 21, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 109, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 113, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 120, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 126, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 127, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 132, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 157, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 158, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 162, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 191, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 192, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 193, col 24, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 197, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 217, col 34, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.xhr-polling.test.js: line 217, col 34, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 234, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 235, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 254, col 26, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.xhr-polling.test.js: line 254, col 26, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 260, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 261, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 266, col 50, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 267, col 53, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 293, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 297, col 34, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 298, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 321, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 322, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 326, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 333, col 50, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 335, col 65, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 336, col 65, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 338, col 12, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 375, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 376, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 377, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.xhr-polling.test.js: line 377, col 20, Too many errors. (13% scanned).
node_modules/socket.io/test/parser.test.js: line 6, col 35, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 7, col 21, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 18, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 19, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 20, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 27, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 28, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 29, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 36, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 37, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 38, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 45, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 46, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 47, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 54, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 55, col 16, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 56, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 63, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 64, col 16, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 65, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 75, col 17, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 76, col 18, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 77, col 21, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 84, col 22, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/parser.test.js: line 84, col 22, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/parser.test.js: line 89, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 90, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 97, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 98, col 13, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 99, col 14, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 100, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 107, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 108, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 109, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 116, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 117, col 13, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 118, col 14, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 119, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 120, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 128, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 129, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 130, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 137, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 138, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 145, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 146, col 13, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 147, col 14, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 148, col 19, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 155, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 162, col 15, Bad line breaking before ','.
node_modules/socket.io/test/parser.test.js: line 162, col 15, Too many errors. (45% scanned).
node_modules/socket.io/test/transports.websocket.hybi16.parser.test.js: line 187, col 16, 'i' is already defined.
node_modules/socket.io/test/transports.websocket.hybi16.parser.test.js: line 260, col 4, Extra comma.
node_modules/socket.io/test/namespace.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 22, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 23, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 30, col 26, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 38, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 41, col 9, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 46, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 47, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 57, col 26, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 65, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 68, col 9, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 73, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 74, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 83, col 56, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/namespace.test.js: line 83, col 56, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/namespace.test.js: line 84, col 53, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/namespace.test.js: line 84, col 53, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/namespace.test.js: line 92, col 26, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 100, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 103, col 9, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 108, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 109, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 110, col 17, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 125, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 133, col 49, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 137, col 28, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 140, col 9, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 145, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 146, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 147, col 17, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 148, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 149, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 150, col 18, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 151, col 20, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 152, col 9, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 180, col 23, Use '===' to compare with '0'.
node_modules/socket.io/test/namespace.test.js: line 185, col 27, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 207, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 211, col 7, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 215, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 216, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 217, col 17, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 222, col 12, Expected an identifier and instead saw 'in' (a reserved word).
node_modules/socket.io/test/namespace.test.js: line 230, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 245, col 7, Missing semicolon.
node_modules/socket.io/test/namespace.test.js: line 249, col 28, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 250, col 23, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 251, col 17, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 268, col 19, Bad line breaking before ','.
node_modules/socket.io/test/namespace.test.js: line 268, col 19, Too many errors. (93% scanned).
node_modules/socket.io/test/transports.htmlfile.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 14, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 15, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 24, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.htmlfile.test.js: line 30, col 20, The '__proto__' property is deprecated.
node_modules/socket.io/test/transports.htmlfile.test.js: line 38, col 12, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 39, col 12, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 41, col 7, Bad line breaking before '+'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 42, col 7, Bad line breaking before '+'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 42, col 33, Missing semicolon.
node_modules/socket.io/test/transports.htmlfile.test.js: line 53, col 15, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 54, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 68, col 13, Expected a 'break' statement before 'case'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 76, col 13, Expected a 'break' statement before 'case'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 80, col 56, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 90, col 10, Unnecessary semicolon.
node_modules/socket.io/test/transports.htmlfile.test.js: line 91, col 8, Unnecessary semicolon.
node_modules/socket.io/test/transports.htmlfile.test.js: line 106, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.htmlfile.test.js: line 115, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 116, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 117, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 121, col 36, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 122, col 35, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 128, col 24, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.htmlfile.test.js: line 128, col 24, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.htmlfile.test.js: line 150, col 10, Unnecessary semicolon.
node_modules/socket.io/test/transports.htmlfile.test.js: line 156, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 157, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 158, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 162, col 36, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 163, col 35, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 180, col 9, This 'switch' should be an 'if'.
node_modules/socket.io/test/transports.htmlfile.test.js: line 204, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 205, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 206, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 207, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 218, col 28, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/transports.htmlfile.test.js: line 218, col 28, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.htmlfile.test.js: line 247, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 248, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 249, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 250, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 261, col 28, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/transports.htmlfile.test.js: line 261, col 28, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.htmlfile.test.js: line 291, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 292, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 293, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 294, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.htmlfile.test.js: line 305, col 28, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/transports.htmlfile.test.js: line 305, col 28, Too many errors. (66% scanned).
node_modules/socket.io/test/transports.flashsocket.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 13, col 24, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 14, col 26, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 15, col 32, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 16, col 75, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 17, col 53, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 18, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 32, col 7, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 34, col 9, Bad line breaking before '+'.
node_modules/socket.io/test/transports.flashsocket.test.js: line 36, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.flashsocket.test.js: line 42, col 23, The '__proto__' property is deprecated.
node_modules/socket.io/test/transports.flashsocket.test.js: line 61, col 41, Bad escapement.
node_modules/socket.io/test/transports.flashsocket.test.js: line 77, col 44, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 87, col 24, Expected an identifier and instead saw 'instanceof' (a reserved word).
node_modules/socket.io/test/transports.flashsocket.test.js: line 92, col 7, Missing semicolon.
node_modules/socket.io/test/transports.flashsocket.test.js: line 96, col 44, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 112, col 7, Missing semicolon.
node_modules/socket.io/test/transports.flashsocket.test.js: line 117, col 44, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 118, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 127, col 24, Expected an identifier and instead saw 'instanceof' (a reserved word).
node_modules/socket.io/test/transports.flashsocket.test.js: line 146, col 44, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 169, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.flashsocket.test.js: line 170, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 14, col 31, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 15, col 25, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 16, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 25, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 31, col 24, The '__proto__' property is deprecated.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 48, col 7, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 49, col 7, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 51, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 66, col 61, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 73, col 41, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 95, col 16, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 140, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 149, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 153, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 161, col 6, Unnecessary semicolon.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 171, col 19, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 172, col 21, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 173, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 177, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 184, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 190, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 191, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 196, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 221, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 222, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 254, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 255, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 256, col 24, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 260, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 280, col 34, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 280, col 34, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 297, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 298, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 317, col 26, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 317, col 26, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 323, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 324, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 329, col 52, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 330, col 69, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 356, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 360, col 34, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 361, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 384, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 385, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 389, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 396, col 52, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 398, col 65, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 399, col 65, Bad line breaking before ','.
node_modules/socket.io/test/transports.jsonp-polling.test.js: line 399, col 65, Too many errors. (51% scanned).
node_modules/socket.io/test/leaks/socket.leaktest.js: line 13, col 42, Bad line breaking before ','.
node_modules/socket.io/test/leaks/socket.leaktest.js: line 14, col 33, Bad line breaking before ','.
node_modules/socket.io/test/leaks/socket.leaktest.js: line 25, col 2, Unnecessary semicolon.
node_modules/socket.io/test/transports.websocket.hybi07-12.parser.test.js: line 187, col 16, 'i' is already defined.
node_modules/socket.io/test/transports.websocket.hybi07-12.parser.test.js: line 260, col 4, Extra comma.
node_modules/socket.io/test/transports.websocket.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 14, col 18, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 23, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 24, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 38, col 8, Mixed spaces and tabs.
node_modules/socket.io/test/transports.websocket.test.js: line 41, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 42, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 60, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 75, col 6, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 85, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 86, col 24, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 101, col 6, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 111, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 112, col 24, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 122, col 6, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 136, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 137, col 24, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 147, col 6, Missing semicolon.
node_modules/socket.io/test/transports.websocket.test.js: line 161, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 162, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 163, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 167, col 36, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 168, col 35, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 174, col 24, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.websocket.test.js: line 174, col 24, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.websocket.test.js: line 198, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 199, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 200, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 201, col 22, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 205, col 36, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 206, col 35, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 240, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 241, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 242, col 20, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 246, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 253, col 28, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.websocket.test.js: line 253, col 28, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.websocket.test.js: line 267, col 21, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 268, col 21, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 279, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 280, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 284, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 291, col 28, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/transports.websocket.test.js: line 291, col 28, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/transports.websocket.test.js: line 306, col 21, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 307, col 29, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 318, col 28, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 319, col 23, Bad line breaking before ','.
node_modules/socket.io/test/transports.websocket.test.js: line 323, col 31, A leading decimal point can be confused with a dot: '.05'.
node_modules/socket.io/test/transports.websocket.test.js: line 323, col 31, Too many errors. (17% scanned).
node_modules/socket.io/test/hybi-common.js: line 12, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 24, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 36, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 49, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 61, col 13, 'buf' is already defined.
node_modules/socket.io/test/hybi-common.js: line 66, col 13, 'buf' is already defined.
node_modules/socket.io/test/hybi-common.js: line 70, col 33, 'buf' used out of scope.
node_modules/socket.io/test/hybi-common.js: line 71, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 80, col 12, Use '===' to compare with '0'.
node_modules/socket.io/test/hybi-common.js: line 83, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 91, col 2, Missing semicolon.
node_modules/socket.io/test/hybi-common.js: line 99, col 2, Missing semicolon.
node_modules/socket.io/test/static.test.js: line 12, col 30, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 13, col 32, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 23, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 26, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 26, col 50, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 26, col 50, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 27, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 27, col 57, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 27, col 57, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 28, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 28, col 62, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 28, col 62, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 29, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 29, col 69, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 29, col 69, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 30, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 30, col 74, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 30, col 74, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 31, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 31, col 82, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 31, col 82, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 40, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 43, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 43, col 50, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/static.test.js: line 43, col 50, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 44, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 44, col 62, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/static.test.js: line 44, col 62, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/static.test.js: line 53, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 54, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 71, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 72, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 96, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 97, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 120, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 121, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 138, col 29, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 159, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 160, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 179, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 180, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 201, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 202, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 211, col 9, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 225, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 226, col 29, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 235, col 11, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 235, col 23, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/test/static.test.js: line 236, col 7, Expected an identifier and instead saw 'static'.
node_modules/socket.io/test/static.test.js: line 253, col 18, Bad line breaking before ','.
node_modules/socket.io/test/static.test.js: line 253, col 18, Too many errors. (46% scanned).
node_modules/socket.io/test/stores.memory.test.js: line 8, col 30, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 9, col 30, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 20, col 7, Missing '()' invoking a constructor.
node_modules/socket.io/test/stores.memory.test.js: line 19, col 21, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 33, col 25, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 33, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 37, col 27, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 37, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 44, col 31, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 44, col 31, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 75, col 56, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 78, col 33, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 79, col 37, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 90, col 25, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 90, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 94, col 27, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 94, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 98, col 44, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 99, col 51, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 104, col 29, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 104, col 29, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 108, col 31, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 108, col 31, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 121, col 56, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 124, col 33, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 125, col 37, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 136, col 25, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 136, col 25, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 140, col 27, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/test/stores.memory.test.js: line 140, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/test/stores.memory.test.js: line 163, col 33, Bad line breaking before ','.
node_modules/socket.io/test/stores.memory.test.js: line 164, col 53, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 5, col 30, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 12, col 56, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 13, col 37, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 14, col 23, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 24, col 34, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 25, col 29, Bad line breaking before ','.
node_modules/socket.io/benchmarks/runner.js: line 36, col 40, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 6, col 36, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 7, col 30, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 8, col 23, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 9, col 17, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 14, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 15, col 17, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 22, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 23, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 24, col 17, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 31, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 32, col 11, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 33, col 12, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 34, col 17, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 41, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 42, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 43, col 17, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 50, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 52, col 5, Missing semicolon.
node_modules/socket.io/benchmarks/encode.bench.js: line 57, col 13, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 58, col 15, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 59, col 15, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 61, col 5, Missing semicolon.
node_modules/socket.io/benchmarks/encode.bench.js: line 62, col 3, Missing semicolon.
node_modules/socket.io/benchmarks/encode.bench.js: line 66, col 71, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 67, col 73, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 68, col 76, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 69, col 79, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 70, col 88, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 71, col 79, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 79, col 47, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 80, col 58, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 81, col 81, Bad line breaking before ','.
node_modules/socket.io/benchmarks/encode.bench.js: line 82, col 5, Extra comma.
node_modules/socket.io/benchmarks/decode.bench.js: line 6, col 36, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 7, col 30, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 8, col 23, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 9, col 17, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 37, col 69, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 38, col 71, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 39, col 74, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 40, col 77, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 41, col 86, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 42, col 77, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 53, col 47, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 54, col 58, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 55, col 81, Bad line breaking before ','.
node_modules/socket.io/benchmarks/decode.bench.js: line 56, col 5, Extra comma.
node_modules/socket.io/examples/chat/app.js: line 5, col 32, Bad line breaking before ','.
node_modules/socket.io/examples/chat/app.js: line 6, col 30, Bad line breaking before ','.
node_modules/socket.io/examples/chat/app.js: line 7, col 24, Bad line breaking before ','.
node_modules/socket.io/examples/chat/app.js: line 22, col 19, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/examples/chat/app.js: line 30, col 4, Unnecessary semicolon.
node_modules/socket.io/examples/chat/app.js: line 54, col 24, Bad line breaking before ','.
node_modules/socket.io/examples/irc-output/app.js: line 5, col 32, Bad line breaking before ','.
node_modules/socket.io/examples/irc-output/app.js: line 6, col 30, Bad line breaking before ','.
node_modules/socket.io/examples/irc-output/app.js: line 7, col 24, Bad line breaking before ','.
node_modules/socket.io/examples/irc-output/app.js: line 8, col 40, Bad line breaking before ','.
node_modules/socket.io/examples/irc-output/app.js: line 22, col 79, Missing semicolon.
node_modules/socket.io/examples/irc-output/app.js: line 23, col 19, Expected an identifier and instead saw 'static' (a reserved word).
node_modules/socket.io/examples/irc-output/app.js: line 31, col 4, Unnecessary semicolon.
node_modules/socket.io/examples/irc-output/app.js: line 55, col 25, Missing semicolon.
node_modules/socket.io/examples/irc-output/irc.js: line 41, col 2, Missing semicolon.
node_modules/socket.io/examples/irc-output/irc.js: line 98, col 7, Bad line breaking before '?'.
node_modules/socket.io/examples/irc-output/irc.js: line 102, col 7, Bad line breaking before '?'.
node_modules/socket.io/examples/irc-output/irc.js: line 143, col 3, This 'switch' should be an 'if'.
node_modules/socket.io/examples/irc-output/irc.js: line 163, col 38, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/examples/basic.fallback.js: line 1, col 26, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/examples/basic.fallback.js: line 4, col 76, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/examples/basic.fallback.js: line 4, col 78, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/examples/basic.js: line 1, col 26, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 1, col 26, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 2, col 22, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 3, col 26, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 4, col 28, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 5, col 24, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 6, col 30, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 13, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 18, col 37, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 22, col 27, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 22, col 27, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 41, col 26, Expected an identifier and instead saw 'false' (a reserved word).
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 41, col 26, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 45, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 57, col 28, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 67, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 77, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 82, col 46, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 82, col 46, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 95, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 98, col 37, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 99, col 17, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 102, col 23, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 105, col 45, Expected an identifier and instead saw 'true' (a reserved word).
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 105, col 45, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 112, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 115, col 37, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 129, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 132, col 16, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 133, col 82, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 133, col 83, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 139, col 46, Bad escapement.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 141, col 31, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 159, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 162, col 16, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 167, col 44, Bad escapement.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 169, col 29, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 184, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 187, col 16, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 189, col 77, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 191, col 9, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 192, col 88, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 192, col 89, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 198, col 46, Bad escapement.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 200, col 31, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/tests/unit.test.js: line 217, col 3, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 5, col 29, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 28, col 39, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 28, col 40, Missing semicolon.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 48, col 11, Bad line breaking before '?'.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 51, col 7, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 57, col 110, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 63, col 101, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 91, col 12, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 92, col 37, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 113, col 11, Bad line breaking before '&&'.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 114, col 11, Bad line breaking before '&&'.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 114, col 58, Bad escapement.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 115, col 11, Bad line breaking before '&&'.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 116, col 11, Bad line breaking before '&&'.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 139, col 4, Expected an assignment or function call and instead saw an expression.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 168, col 9, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 169, col 9, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 174, col 47, 'origin' is already defined.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 195, col 37, Bad line breaking before ','.
node_modules/socket.io/node_modules/policyfile/lib/server.js: line 208, col 10, Bad line breaking before ','.
node_modules/socket.io/node_modules/redis/eval_test.js: line 6, col 8, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/eval_test.js: line 6, col 12, eval is evil.
node_modules/socket.io/node_modules/redis/multi_bench.js: line 71, col 14, Don't make functions within a loop.
node_modules/socket.io/node_modules/redis/multi_bench.js: line 75, col 14, Don't make functions within a loop.
node_modules/socket.io/node_modules/redis/multi_bench.js: line 90, col 34, Use '===' to compare with '0'.
node_modules/socket.io/node_modules/redis/test.js: line 235, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 235, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 237, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 237, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 239, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 239, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 241, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 241, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 243, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 243, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 245, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 245, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 247, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 247, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 258, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 258, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 267, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 267, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 274, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 274, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 280, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 280, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 290, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 290, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 299, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 299, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 306, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 306, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 313, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 313, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/test.js: line 320, col 16, Expected an identifier and instead saw 'eval' (a reserved word).
node_modules/socket.io/node_modules/redis/test.js: line 320, col 20, eval is evil.
node_modules/socket.io/node_modules/redis/examples/extend.js: line 17, col 22, Missing semicolon.
node_modules/socket.io/node_modules/redis/examples/unix_socket.js: line 6, col 47, Missing semicolon.
node_modules/socket.io/node_modules/redis/examples/file.js: line 14, col 23, Missing semicolon.
node_modules/socket.io/node_modules/redis/examples/file.js: line 24, col 58, Missing semicolon.