forked from outmoded/tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log
2721 lines (2716 loc) · 167 KB
/
log
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
> [email protected] test /home/eran/code/tv
> make test-cov
....
4 tests complete
Test duration: 418 ms
Assertions count: 0 (verbosity: 0.00)
No global variable leaks detected
Coverage: 100.00%
Linting results:
index.js:
Line 1: eol-last - Newline required at end of file but not found.
public/js/handlebars.js:
Line 187: no-trailing-spaces - Trailing spaces not allowed.
Line 189: no-trailing-spaces - Trailing spaces not allowed.
Line 191: no-trailing-spaces - Trailing spaces not allowed.
Line 193: no-trailing-spaces - Trailing spaces not allowed.
Line 195: no-trailing-spaces - Trailing spaces not allowed.
Line 197: no-trailing-spaces - Trailing spaces not allowed.
Line 199: no-trailing-spaces - Trailing spaces not allowed.
Line 201: no-trailing-spaces - Trailing spaces not allowed.
Line 203: no-trailing-spaces - Trailing spaces not allowed.
Line 205: no-trailing-spaces - Trailing spaces not allowed.
Line 207: no-trailing-spaces - Trailing spaces not allowed.
Line 209: no-trailing-spaces - Trailing spaces not allowed.
Line 211: no-trailing-spaces - Trailing spaces not allowed.
Line 213: no-trailing-spaces - Trailing spaces not allowed.
Line 215: no-trailing-spaces - Trailing spaces not allowed.
Line 217: no-trailing-spaces - Trailing spaces not allowed.
Line 219: no-trailing-spaces - Trailing spaces not allowed.
Line 221: no-trailing-spaces - Trailing spaces not allowed.
Line 223: no-trailing-spaces - Trailing spaces not allowed.
Line 225: no-trailing-spaces - Trailing spaces not allowed.
Line 227: no-trailing-spaces - Trailing spaces not allowed.
Line 229: no-trailing-spaces - Trailing spaces not allowed.
Line 231: no-trailing-spaces - Trailing spaces not allowed.
Line 233: no-trailing-spaces - Trailing spaces not allowed.
Line 235: no-trailing-spaces - Trailing spaces not allowed.
Line 237: no-trailing-spaces - Trailing spaces not allowed.
Line 239: no-trailing-spaces - Trailing spaces not allowed.
Line 241: no-trailing-spaces - Trailing spaces not allowed.
Line 243: no-trailing-spaces - Trailing spaces not allowed.
Line 245: no-trailing-spaces - Trailing spaces not allowed.
Line 247: no-trailing-spaces - Trailing spaces not allowed.
Line 249: no-trailing-spaces - Trailing spaces not allowed.
Line 251: no-trailing-spaces - Trailing spaces not allowed.
Line 253: no-trailing-spaces - Trailing spaces not allowed.
Line 255: no-trailing-spaces - Trailing spaces not allowed.
Line 257: no-trailing-spaces - Trailing spaces not allowed.
Line 259: no-trailing-spaces - Trailing spaces not allowed.
Line 261: no-trailing-spaces - Trailing spaces not allowed.
Line 263: no-trailing-spaces - Trailing spaces not allowed.
Line 265: no-trailing-spaces - Trailing spaces not allowed.
Line 267: no-trailing-spaces - Trailing spaces not allowed.
Line 269: no-trailing-spaces - Trailing spaces not allowed.
Line 271: no-trailing-spaces - Trailing spaces not allowed.
Line 273: no-trailing-spaces - Trailing spaces not allowed.
Line 275: no-trailing-spaces - Trailing spaces not allowed.
Line 277: no-trailing-spaces - Trailing spaces not allowed.
Line 279: no-trailing-spaces - Trailing spaces not allowed.
Line 569: no-trailing-spaces - Trailing spaces not allowed.
Line 571: no-trailing-spaces - Trailing spaces not allowed.
Line 577: no-trailing-spaces - Trailing spaces not allowed.
Line 579: no-trailing-spaces - Trailing spaces not allowed.
Line 581: no-trailing-spaces - Trailing spaces not allowed.
Line 583: no-trailing-spaces - Trailing spaces not allowed.
Line 585: no-trailing-spaces - Trailing spaces not allowed.
Line 587: no-trailing-spaces - Trailing spaces not allowed.
Line 589: no-trailing-spaces - Trailing spaces not allowed.
Line 591: no-trailing-spaces - Trailing spaces not allowed.
Line 593: no-trailing-spaces - Trailing spaces not allowed.
Line 595: no-trailing-spaces - Trailing spaces not allowed.
Line 597: no-trailing-spaces - Trailing spaces not allowed.
Line 599: no-trailing-spaces - Trailing spaces not allowed.
Line 601: no-trailing-spaces - Trailing spaces not allowed.
Line 603: no-trailing-spaces - Trailing spaces not allowed.
Line 605: no-trailing-spaces - Trailing spaces not allowed.
Line 607: no-trailing-spaces - Trailing spaces not allowed.
Line 609: no-trailing-spaces - Trailing spaces not allowed.
Line 611: no-trailing-spaces - Trailing spaces not allowed.
Line 613: no-trailing-spaces - Trailing spaces not allowed.
Line 615: no-trailing-spaces - Trailing spaces not allowed.
Line 617: no-trailing-spaces - Trailing spaces not allowed.
Line 619: no-trailing-spaces - Trailing spaces not allowed.
Line 621: no-trailing-spaces - Trailing spaces not allowed.
Line 623: no-trailing-spaces - Trailing spaces not allowed.
Line 625: no-trailing-spaces - Trailing spaces not allowed.
Line 627: no-trailing-spaces - Trailing spaces not allowed.
Line 629: no-trailing-spaces - Trailing spaces not allowed.
Line 631: no-trailing-spaces - Trailing spaces not allowed.
Line 633: no-trailing-spaces - Trailing spaces not allowed.
Line 635: no-trailing-spaces - Trailing spaces not allowed.
Line 637: no-trailing-spaces - Trailing spaces not allowed.
Line 32: quotes - Strings must use singlequote.
Line 44: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 55: no-else-return - Unexpected 'else' after 'return'.
Line 53: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 56: quotes - Strings must use singlequote.
Line 56: quotes - Strings must use singlequote.
Line 60: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 60: quotes - Strings must use singlequote.
Line 63: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 66: quotes - Strings must use singlequote.
Line 69: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 71: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 73: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 73: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 75: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 75: quotes - Strings must use singlequote.
Line 78: no-else-return - Unexpected 'else' after 'return'.
Line 76: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 115: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 115: quotes - Strings must use singlequote.
Line 121: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 122: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 123: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 123: space-infix-ops - Infix operators must be spaced.
Line 128: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 129: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 130: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 138: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 147: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 151: no-else-return - Unexpected 'else' after 'return'.
Line 149: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 169: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 174: no-extra-semi - Unnecessary semicolon.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 180: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 181: quotes - Strings must use singlequote.
Line 188: no-unreachable - Found unexpected statement after a return.
Line 187: space-infix-ops - Infix operators must be spaced.
Line 191: space-infix-ops - Infix operators must be spaced.
Line 193: space-infix-ops - Infix operators must be spaced.
Line 203: space-infix-ops - Infix operators must be spaced.
Line 203: space-infix-ops - Infix operators must be spaced.
Line 205: space-infix-ops - Infix operators must be spaced.
Line 205: space-infix-ops - Infix operators must be spaced.
Line 205: space-infix-ops - Infix operators must be spaced.
Line 207: space-infix-ops - Infix operators must be spaced.
Line 207: space-infix-ops - Infix operators must be spaced.
Line 207: space-infix-ops - Infix operators must be spaced.
Line 217: space-infix-ops - Infix operators must be spaced.
Line 217: space-infix-ops - Infix operators must be spaced.
Line 219: space-infix-ops - Infix operators must be spaced.
Line 219: space-infix-ops - Infix operators must be spaced.
Line 221: space-infix-ops - Infix operators must be spaced.
Line 223: space-infix-ops - Infix operators must be spaced.
Line 223: space-infix-ops - Infix operators must be spaced.
Line 225: space-infix-ops - Infix operators must be spaced.
Line 225: space-infix-ops - Infix operators must be spaced.
Line 227: space-infix-ops - Infix operators must be spaced.
Line 229: space-infix-ops - Infix operators must be spaced.
Line 229: space-infix-ops - Infix operators must be spaced.
Line 233: space-infix-ops - Infix operators must be spaced.
Line 233: space-infix-ops - Infix operators must be spaced.
Line 235: space-infix-ops - Infix operators must be spaced.
Line 237: space-infix-ops - Infix operators must be spaced.
Line 243: space-infix-ops - Infix operators must be spaced.
Line 243: space-infix-ops - Infix operators must be spaced.
Line 259: space-infix-ops - Infix operators must be spaced.
Line 259: space-infix-ops - Infix operators must be spaced.
Line 263: space-infix-ops - Infix operators must be spaced.
Line 265: space-infix-ops - Infix operators must be spaced.
Line 267: space-infix-ops - Infix operators must be spaced.
Line 269: space-infix-ops - Infix operators must be spaced.
Line 271: space-infix-ops - Infix operators must be spaced.
Line 277: space-infix-ops - Infix operators must be spaced.
Line 277: space-infix-ops - Infix operators must be spaced.
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 289: quotes - Strings must use singlequote.
Line 294: curly - Expected { after 'if' condition.
Line 294: eqeqeq - Expected '===' and instead saw '=='.
Line 294: quotes - Strings must use singlequote.
Line 299: curly - Expected { after 'if' condition.
Line 299: quotes - Strings must use singlequote.
Line 301: func-style - Expected a function expression.
Line 306: func-style - Expected a function expression.
Line 309: quotes - Strings must use singlequote.
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 314: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 320: eqeqeq - Expected '===' and instead saw '=='.
Line 320: quotes - Strings must use singlequote.
Line 325: quotes - Strings must use singlequote.
Line 326: quotes - Strings must use singlequote.
Line 331: quotes - Strings must use singlequote.
Line 331: quotes - Strings must use singlequote.
Line 334: quotes - Strings must use singlequote.
Line 334: quotes - Strings must use singlequote.
Line 334: quotes - Strings must use singlequote.
Line 334: quotes - Strings must use singlequote.
Line 334: quotes - Strings must use singlequote.
Line 334: quotes - Strings must use singlequote.
Line 336: quotes - Strings must use singlequote.
Line 336: quotes - Strings must use singlequote.
Line 336: space-infix-ops - Infix operators must be spaced.
Line 336: eqeqeq - Expected '===' and instead saw '=='.
Line 336: quotes - Strings must use singlequote.
Line 336: quotes - Strings must use singlequote.
Line 336: quotes - Strings must use singlequote.
Line 342: quotes - Strings must use singlequote.
Line 342: quotes - Strings must use singlequote.
Line 356: curly - Expected { after 'if' condition.
Line 366: camelcase - Identifier 'first_line' is not in camel case.
Line 366: camelcase - Identifier 'last_line' is not in camel case.
Line 366: camelcase - Identifier 'first_column' is not in camel case.
Line 366: camelcase - Identifier 'last_column' is not in camel case.
Line 371: quotes - Strings must use singlequote.
Line 643: semi - Missing semicolon.
Line 408: camelcase - Identifier 'first_line' is not in camel case.
Line 408: camelcase - Identifier 'first_column' is not in camel case.
Line 408: camelcase - Identifier 'last_line' is not in camel case.
Line 408: camelcase - Identifier 'last_column' is not in camel case.
Line 409: curly - Expected { after 'if' condition.
Line 427: curly - Expected { after 'if' condition.
Line 437: space-infix-ops - Infix operators must be spaced.
Line 437: space-infix-ops - Infix operators must be spaced.
Line 441: space-infix-ops - Infix operators must be spaced.
Line 442: space-infix-ops - Infix operators must be spaced.
Line 444: curly - Expected { after 'if' condition.
Line 444: space-infix-ops - Infix operators must be spaced.
Line 444: space-infix-ops - Infix operators must be spaced.
Line 447: camelcase - Identifier 'first_line' is not in camel case.
Line 448: camelcase - Identifier 'last_line' is not in camel case.
Line 448: space-infix-ops - Infix operators must be spaced.
Line 449: camelcase - Identifier 'first_column' is not in camel case.
Line 450: camelcase - Identifier 'last_column' is not in camel case.
Line 450: space-infix-ops - Infix operators must be spaced.
Line 469: space-infix-ops - Infix operators must be spaced.
Line 469: quotes - Strings must use singlequote.
Line 474: space-infix-ops - Infix operators must be spaced.
Line 476: space-infix-ops - Infix operators must be spaced.
Line 476: space-infix-ops - Infix operators must be spaced.
Line 476: quotes - Strings must use singlequote.
Line 480: quotes - Strings must use singlequote.
Line 481: space-infix-ops - Infix operators must be spaced.
Line 481: quotes - Strings must use singlequote.
Line 481: quotes - Strings must use singlequote.
Line 487: curly - Expected { after 'if' condition.
Line 490: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 491: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 492: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 493: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 494: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 500: space-infix-ops - Infix operators must be spaced.
Line 505: curly - Expected { after 'if' condition.
Line 510: curly - Expected { after 'if' condition.
Line 511: camelcase - Identifier 'first_line' is not in camel case.
Line 512: camelcase - Identifier 'last_line' is not in camel case.
Line 512: space-infix-ops - Infix operators must be spaced.
Line 513: camelcase - Identifier 'first_column' is not in camel case.
Line 514: camelcase - Identifier 'last_column' is not in camel case.
Line 514: space-infix-ops - Infix operators must be spaced.
Line 514: space-infix-ops - Infix operators must be spaced.
Line 514: space-infix-ops - Infix operators must be spaced.
Line 525: space-infix-ops - Infix operators must be spaced.
Line 526: curly - Expected { after 'if' condition.
Line 528: no-else-return - Unexpected 'else' after 'return'.
Line 527: curly - Expected { after 'if' condition.
Line 527: curly - Expected { after 'else'.
Line 532: no-else-return - Unexpected 'else' after 'return'.
Line 530: quotes - Strings must use singlequote.
Line 533: space-infix-ops - Infix operators must be spaced.
Line 533: space-infix-ops - Infix operators must be spaced.
Line 533: space-infix-ops - Infix operators must be spaced.
Line 533: space-infix-ops - Infix operators must be spaced.
Line 534: quotes - Strings must use singlequote.
Line 541: no-else-return - Unexpected 'else' after 'return'.
Line 552: space-infix-ops - Infix operators must be spaced.
Line 555: space-infix-ops - Infix operators must be spaced.
Line 561: camelcase - Identifier '$avoiding_name_collisions' is not in camel case.
Line 563: semi - Missing semicolon.
Line 563: space-infix-ops - Infix operators must be spaced.
Line 564: space-after-keywords - Keyword "switch" must be followed by whitespace.
Line 564: camelcase - Identifier '$avoiding_name_collisions' is not in camel case.
Line 566: curly - Expected { after 'if' condition.
Line 566: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 566: quotes - Strings must use singlequote.
Line 566: quotes - Strings must use singlequote.
Line 567: curly - Expected { after 'if' condition.
Line 567: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 567: quotes - Strings must use singlequote.
Line 567: no-sequences - Unexpected use of comma operator.
Line 567: space-infix-ops - Infix operators must be spaced.
Line 567: quotes - Strings must use singlequote.
Line 568: curly - Expected { after 'if' condition.
Line 568: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 572: no-unreachable - Found unexpected statement after a return.
Line 574: curly - Expected { after 'if' condition.
Line 574: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 574: quotes - Strings must use singlequote.
Line 575: curly - Expected { after 'if' condition.
Line 575: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 575: quotes - Strings must use singlequote.
Line 575: space-infix-ops - Infix operators must be spaced.
Line 578: no-unreachable - Found unexpected statement after a return.
Line 579: space-infix-ops - Infix operators must be spaced.
Line 580: no-unreachable - Found unexpected statement after a return.
Line 581: quotes - Strings must use singlequote.
Line 582: no-unreachable - Found unexpected statement after a return.
Line 584: no-unreachable - Found unexpected statement after a return.
Line 586: no-unreachable - Found unexpected statement after a return.
Line 588: no-unreachable - Found unexpected statement after a return.
Line 590: no-unreachable - Found unexpected statement after a return.
Line 592: no-unreachable - Found unexpected statement after a return.
Line 594: no-unreachable - Found unexpected statement after a return.
Line 597: space-infix-ops - Infix operators must be spaced.
Line 598: no-unreachable - Found unexpected statement after a return.
Line 600: no-unreachable - Found unexpected statement after a return.
Line 602: no-unreachable - Found unexpected statement after a return.
Line 604: no-unreachable - Found unexpected statement after a return.
Line 606: no-unreachable - Found unexpected statement after a return.
Line 608: no-unreachable - Found unexpected statement after a return.
Line 612: no-unreachable - Found unexpected statement after a return.
Line 614: no-unreachable - Found unexpected statement after a return.
Line 615: space-infix-ops - Infix operators must be spaced.
Line 616: no-unreachable - Found unexpected statement after a return.
Line 617: space-infix-ops - Infix operators must be spaced.
Line 617: quotes - Strings must use singlequote.
Line 618: no-unreachable - Found unexpected statement after a return.
Line 620: no-unreachable - Found unexpected statement after a return.
Line 622: no-unreachable - Found unexpected statement after a return.
Line 624: no-unreachable - Found unexpected statement after a return.
Line 626: no-unreachable - Found unexpected statement after a return.
Line 628: no-unreachable - Found unexpected statement after a return.
Line 629: space-infix-ops - Infix operators must be spaced.
Line 630: no-unreachable - Found unexpected statement after a return.
Line 632: no-unreachable - Found unexpected statement after a return.
Line 636: no-unreachable - Found unexpected statement after a return.
Line 638: no-unreachable - Found unexpected statement after a return.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 642: quotes - Strings must use singlequote.
Line 645: func-style - Expected a function expression.
Line 646: new-parens - Missing '()' invoking a constructor
Line 647: no-extra-semi - Unnecessary semicolon.
Line 654: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 662: no-extra-semi - Unnecessary semicolon.
Line 669: quotes - Strings must use singlequote.
Line 671: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 675: quotes - Strings must use singlequote.
Line 697: quotes - Strings must use singlequote.
Line 703: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 704: quotes - Strings must use singlequote.
Line 710: quotes - Strings must use singlequote.
Line 721: quotes - Strings must use singlequote.
Line 726: quotes - Strings must use singlequote.
Line 731: quotes - Strings must use singlequote.
Line 732: quotes - Strings must use singlequote.
Line 734: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 736: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 736: space-infix-ops - Infix operators must be spaced.
Line 736: space-infix-ops - Infix operators must be spaced.
Line 736: space-infix-ops - Infix operators must be spaced.
Line 739: quotes - Strings must use singlequote.
Line 739: quotes - Strings must use singlequote.
Line 739: quotes - Strings must use singlequote.
Line 740: quotes - Strings must use singlequote.
Line 741: quotes - Strings must use singlequote.
Line 759: quotes - Strings must use singlequote.
Line 764: quotes - Strings must use singlequote.
Line 769: quotes - Strings must use singlequote.
Line 775: quotes - Strings must use singlequote.
Line 781: quotes - Strings must use singlequote.
Line 783: quotes - Strings must use singlequote.
Line 787: quotes - Strings must use singlequote.
Line 791: no-extra-semi - Unnecessary semicolon.
Line 816: quotes - Strings must use singlequote.
Line 816: quotes - Strings must use singlequote.
Line 817: quotes - Strings must use singlequote.
Line 817: quotes - Strings must use singlequote.
Line 818: quotes - Strings must use singlequote.
Line 818: quotes - Strings must use singlequote.
Line 819: quotes - Strings must use singlequote.
Line 820: quotes - Strings must use singlequote.
Line 820: quotes - Strings must use singlequote.
Line 821: quotes - Strings must use singlequote.
Line 821: quotes - Strings must use singlequote.
Line 828: quotes - Strings must use singlequote.
Line 836: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 837: quotes - Strings must use singlequote.
Line 840: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 849: no-else-return - Unexpected 'else' after 'return'.
Line 847: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 847: quotes - Strings must use singlequote.
Line 854: no-extra-semi - Unnecessary semicolon.
Line 871: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 871: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 873: space-infix-ops - Infix operators must be spaced.
Line 873: space-infix-ops - Infix operators must be spaced.
Line 873: space-infix-ops - Infix operators must be spaced.
Line 877: quotes - Strings must use singlequote.
Line 877: quotes - Strings must use singlequote.
Line 880: space-infix-ops - Infix operators must be spaced.
Line 880: space-infix-ops - Infix operators must be spaced.
Line 882: quotes - Strings must use singlequote.
Line 883: quotes - Strings must use singlequote.
Line 883: quotes - Strings must use singlequote.
Line 883: quotes - Strings must use singlequote.
Line 883: quotes - Strings must use singlequote.
Line 887: quotes - Strings must use singlequote.
Line 887: quotes - Strings must use singlequote.
Line 891: quotes - Strings must use singlequote.
Line 946: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 949: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 949: space-infix-ops - Infix operators must be spaced.
Line 949: space-infix-ops - Infix operators must be spaced.
Line 949: space-infix-ops - Infix operators must be spaced.
Line 964: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 970: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 970: space-infix-ops - Infix operators must be spaced.
Line 970: space-infix-ops - Infix operators must be spaced.
Line 970: space-infix-ops - Infix operators must be spaced.
Line 973: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 983: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 995: quotes - Strings must use singlequote.
Line 997: quotes - Strings must use singlequote.
Line 1021: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1025: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 1025: space-infix-ops - Infix operators must be spaced.
Line 1025: space-infix-ops - Infix operators must be spaced.
Line 1025: space-infix-ops - Infix operators must be spaced.
Line 1044: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1062: quotes - Strings must use singlequote.
Line 1064: quotes - Strings must use singlequote.
Line 1070: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1080: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1080: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 1080: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 1109: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1114: quotes - Strings must use singlequote.
Line 1131: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 1131: space-infix-ops - Infix operators must be spaced.
Line 1131: space-infix-ops - Infix operators must be spaced.
Line 1131: space-infix-ops - Infix operators must be spaced.
Line 1165: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1165: quotes - Strings must use singlequote.
Line 1166: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1168: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1190: quotes - Strings must use singlequote.
Line 1192: no-else-return - Unexpected 'else' after 'return'.
Line 1191: quotes - Strings must use singlequote.
Line 1192: quotes - Strings must use singlequote.
Line 1198: space-after-keywords - Keyword "while" must be followed by whitespace.
Line 1201: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1202: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1218: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1235: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1254: quotes - Strings must use singlequote.
Line 1254: quotes - Strings must use singlequote.
Line 1258: no-else-return - Unexpected 'else' after 'return'.
Line 1256: quotes - Strings must use singlequote.
Line 1259: quotes - Strings must use singlequote.
Line 1259: quotes - Strings must use singlequote.
Line 1266: no-else-return - Unexpected 'else' after 'return'.
Line 1265: quotes - Strings must use singlequote.
Line 1265: quotes - Strings must use singlequote.
Line 1270: quotes - Strings must use singlequote.
Line 1270: quotes - Strings must use singlequote.
Line 1276: quotes - Strings must use singlequote.
Line 1279: quotes - Strings must use singlequote.
Line 1286: quotes - Strings must use singlequote.
Line 1306: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1310: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 1310: space-infix-ops - Infix operators must be spaced.
Line 1310: space-infix-ops - Infix operators must be spaced.
Line 1313: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1337: quotes - Strings must use singlequote.
Line 1337: quotes - Strings must use singlequote.
Line 1338: quotes - Strings must use singlequote.
Line 1338: quotes - Strings must use singlequote.
Line 1339: quotes - Strings must use singlequote.
Line 1346: quotes - Strings must use singlequote.
Line 1348: quotes - Strings must use singlequote.
Line 1360: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1361: quotes - Strings must use singlequote.
Line 1361: quotes - Strings must use singlequote.
Line 1372: quotes - Strings must use singlequote.
Line 1372: quotes - Strings must use singlequote.
Line 1381: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1384: quotes - Strings must use singlequote.
Line 1386: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 1386: space-infix-ops - Infix operators must be spaced.
Line 1386: space-infix-ops - Infix operators must be spaced.
Line 1386: space-infix-ops - Infix operators must be spaced.
Line 1387: quotes - Strings must use singlequote.
Line 1396: space-infix-ops - Infix operators must be spaced.
Line 1396: space-infix-ops - Infix operators must be spaced.
Line 1396: space-infix-ops - Infix operators must be spaced.
Line 1396: space-infix-ops - Infix operators must be spaced.
Line 1396: space-infix-ops - Infix operators must be spaced.
Line 1396: quotes - Strings must use singlequote.
Line 1396: quotes - Strings must use singlequote.
Line 1396: quotes - Strings must use singlequote.
Line 1403: no-else-return - Unexpected 'else' after 'return'.
Line 1405: quotes - Strings must use singlequote.
Line 1413: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1445: quotes - Strings must use singlequote.
Line 1450: quotes - Strings must use singlequote.
Line 1450: quotes - Strings must use singlequote.
Line 1450: quotes - Strings must use singlequote.
Line 1463: quotes - Strings must use singlequote.
Line 1470: space-infix-ops - Infix operators must be spaced.
Line 1472: quotes - Strings must use singlequote.
Line 1472: quotes - Strings must use singlequote.
Line 1472: quotes - Strings must use singlequote.
Line 1472: quotes - Strings must use singlequote.
Line 1472: quotes - Strings must use singlequote.
Line 1499: quotes - Strings must use singlequote.
Line 1499: quotes - Strings must use singlequote.
Line 1499: quotes - Strings must use singlequote.
Line 1499: quotes - Strings must use singlequote.
Line 1501: quotes - Strings must use singlequote.
Line 1501: quotes - Strings must use singlequote.
Line 1501: quotes - Strings must use singlequote.
Line 1514: quotes - Strings must use singlequote.
Line 1514: quotes - Strings must use singlequote.
Line 1525: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1562: quotes - Strings must use singlequote.
Line 1562: quotes - Strings must use singlequote.
Line 1562: quotes - Strings must use singlequote.
Line 1575: quotes - Strings must use singlequote.
Line 1575: quotes - Strings must use singlequote.
Line 1575: quotes - Strings must use singlequote.
Line 1671: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 1695: quotes - Strings must use singlequote.
Line 1695: quotes - Strings must use singlequote.
Line 1696: quotes - Strings must use singlequote.
Line 1709: quotes - Strings must use singlequote.
Line 1709: quotes - Strings must use singlequote.
Line 1747: quotes - Strings must use singlequote.
Line 1747: quotes - Strings must use singlequote.
Line 1747: quotes - Strings must use singlequote.
Line 1747: quotes - Strings must use singlequote.
Line 1750: quotes - Strings must use singlequote.
Line 1753: quotes - Strings must use singlequote.
Line 1754: quotes - Strings must use singlequote.
Line 1754: quotes - Strings must use singlequote.
Line 1754: quotes - Strings must use singlequote.
Line 1766: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1775: quotes - Strings must use singlequote.
Line 1775: quotes - Strings must use singlequote.
Line 1777: quotes - Strings must use singlequote.
Line 1777: quotes - Strings must use singlequote.
Line 1777: quotes - Strings must use singlequote.
Line 1785: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1787: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 1787: space-infix-ops - Infix operators must be spaced.
Line 1787: space-infix-ops - Infix operators must be spaced.
Line 1787: space-infix-ops - Infix operators must be spaced.
Line 1793: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 1816: quotes - Strings must use singlequote.
Line 1818: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1818: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 1819: quotes - Strings must use singlequote.
Line 1823: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1825: quotes - Strings must use singlequote.
Line 1827: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 1827: space-infix-ops - Infix operators must be spaced.
Line 1827: space-infix-ops - Infix operators must be spaced.
Line 1830: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1830: quotes - Strings must use singlequote.
Line 1831: quotes - Strings must use singlequote.
Line 1836: no-else-return - Unexpected 'else' after 'return'.
Line 1834: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1835: quotes - Strings must use singlequote.
Line 1835: quotes - Strings must use singlequote.
Line 1835: quotes - Strings must use singlequote.
Line 1838: quotes - Strings must use singlequote.
Line 1838: quotes - Strings must use singlequote.
Line 1838: quotes - Strings must use singlequote.
Line 1844: quotes - Strings must use singlequote.
Line 1844: quotes - Strings must use singlequote.
Line 1848: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1863: quotes - Strings must use singlequote.
Line 1863: quotes - Strings must use singlequote.
Line 1871: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1906: quotes - Strings must use singlequote.
Line 1906: quotes - Strings must use singlequote.
Line 1917: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1917: quotes - Strings must use singlequote.
Line 1921: quotes - Strings must use singlequote.
Line 1947: no-else-return - Unexpected 'else' after 'return'.
Line 1957: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1961: no-else-return - Unexpected 'else' after 'return'.
Line 1982: quotes - Strings must use singlequote.
Line 1982: quotes - Strings must use singlequote.
Line 1983: quotes - Strings must use singlequote.
Line 1983: quotes - Strings must use singlequote.
Line 1990: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1990: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1990: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1990: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1992: quotes - Strings must use singlequote.
Line 2001: quotes - Strings must use singlequote.
Line 2002: quotes - Strings must use singlequote.
Line 2006: quotes - Strings must use singlequote.
Line 2007: quotes - Strings must use singlequote.
Line 2010: quotes - Strings must use singlequote.
Line 2011: quotes - Strings must use singlequote.
Line 2014: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 2014: space-infix-ops - Infix operators must be spaced.
Line 2014: space-infix-ops - Infix operators must be spaced.
Line 2018: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2025: quotes - Strings must use singlequote.
Line 2025: quotes - Strings must use singlequote.
Line 2025: quotes - Strings must use singlequote.
Line 2026: quotes - Strings must use singlequote.
Line 2026: quotes - Strings must use singlequote.
Line 2026: quotes - Strings must use singlequote.
Line 2027: quotes - Strings must use singlequote.
Line 2030: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2031: quotes - Strings must use singlequote.
Line 2034: quotes - Strings must use singlequote.
Line 2034: quotes - Strings must use singlequote.
Line 2034: quotes - Strings must use singlequote.
Line 2041: quotes - Strings must use singlequote.
Line 2046: quotes - Strings must use singlequote.
Line 2047: quotes - Strings must use singlequote.
Line 2048: quotes - Strings must use singlequote.
Line 2049: quotes - Strings must use singlequote.
Line 2050: quotes - Strings must use singlequote.
Line 2051: quotes - Strings must use singlequote.
Line 2052: quotes - Strings must use singlequote.
Line 2053: quotes - Strings must use singlequote.
Line 2054: quotes - Strings must use singlequote.
Line 2055: quotes - Strings must use singlequote.
Line 2056: quotes - Strings must use singlequote.
Line 2057: quotes - Strings must use singlequote.
Line 2058: quotes - Strings must use singlequote.
Line 2059: quotes - Strings must use singlequote.
Line 2060: quotes - Strings must use singlequote.
Line 2061: quotes - Strings must use singlequote.
Line 2065: space-after-keywords - Keyword "for" must be followed by whitespace.
Line 2065: space-infix-ops - Infix operators must be spaced.
Line 2065: space-infix-ops - Infix operators must be spaced.
Line 2065: space-infix-ops - Infix operators must be spaced.
Line 2070: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2080: quotes - Strings must use singlequote.
Line 2094: quotes - Strings must use singlequote.
Line 2102: func-style - Expected a function expression.
Line 2117: no-extra-semi - Unnecessary semicolon.
Line 2128: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2132: no-else-return - Unexpected 'else' after 'return'.
Line 2130: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2153: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2154: space-infix-ops - Infix operators must be spaced.
Line 2154: space-infix-ops - Infix operators must be spaced.
Line 2154: space-infix-ops - Infix operators must be spaced.
Line 2154: space-infix-ops - Infix operators must be spaced.
Line 2154: space-infix-ops - Infix operators must be spaced.
Line 2154: quotes - Strings must use singlequote.
Line 2155: quotes - Strings must use singlequote.
Line 2155: quotes - Strings must use singlequote.
Line 2155: quotes - Strings must use singlequote.
Line 2158: space-infix-ops - Infix operators must be spaced.
Line 2158: space-infix-ops - Infix operators must be spaced.
Line 2158: space-infix-ops - Infix operators must be spaced.
Line 2158: quotes - Strings must use singlequote.
Line 2159: quotes - Strings must use singlequote.
Line 2159: quotes - Strings must use singlequote.
Line 2183: quotes - Strings must use singlequote.
Line 2187: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2188: quotes - Strings must use singlequote.
Line 2188: quotes - Strings must use singlequote.
Line 2189: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 2192: quotes - Strings must use singlequote.
Line 2192: quotes - Strings must use singlequote.
Line 2201: no-extra-semi - Unnecessary semicolon.
public/js/interact.js:
Line 3162: eol-last - Newline required at end of file but not found.
Line 8: no-spaced-func - Unexpected space between function name and paren.
Line 12: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 13: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 14: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 15: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 16: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 21: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 22: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 27: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 28: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 30: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 43: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 44: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 45: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 47: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 48: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 49: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 51: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 52: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 53: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 55: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 96: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 109: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 183: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 186: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 188: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 189: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 190: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 191: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 192: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 193: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 194: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 195: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 200: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 223: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 230: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 233: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 235: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 252: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 254: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 261: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 266: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 273: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 276: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 280: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 284: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 288: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 294: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 134: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 135: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 136: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 137: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 154: space-infix-ops - Infix operators must be spaced.
Line 154: space-infix-ops - Infix operators must be spaced.
Line 155: space-infix-ops - Infix operators must be spaced.
Line 155: space-infix-ops - Infix operators must be spaced.
Line 186: space-infix-ops - Infix operators must be spaced.
Line 233: space-infix-ops - Infix operators must be spaced.
Line 261: eqeqeq - Expected '===' and instead saw '=='.
Line 266: space-infix-ops - Infix operators must be spaced.
Line 267: space-infix-ops - Infix operators must be spaced.
Line 268: space-infix-ops - Infix operators must be spaced.
Line 269: space-infix-ops - Infix operators must be spaced.
Line 298: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 299: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 300: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 302: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 303: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 298: space-infix-ops - Infix operators must be spaced.
Line 299: space-infix-ops - Infix operators must be spaced.
Line 300: space-infix-ops - Infix operators must be spaced.
Line 306: no-extend-native - Array prototype is read only, properties should not be added.
Line 310: space-infix-ops - Infix operators must be spaced.
Line 346: no-shadow - target is already declared in the upper scope.
Line 345: func-style - Expected a function expression.
Line 392: no-shadow - target is already declared in the upper scope.
Line 390: func-style - Expected a function expression.
Line 452: func-style - Expected a function expression.
Line 454: func-style - Expected a function expression.
Line 463: func-style - Expected a function expression.
Line 471: space-infix-ops - Infix operators must be spaced.
Line 488: func-style - Expected a function expression.
Line 501: func-style - Expected a function expression.
Line 503: space-infix-ops - Infix operators must be spaced.
Line 506: func-style - Expected a function expression.
Line 513: func-style - Expected a function expression.
Line 516: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 517: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 518: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 519: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 537: func-style - Expected a function expression.
Line 544: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 545: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 546: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 547: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 550: space-infix-ops - Infix operators must be spaced.
Line 553: space-infix-ops - Infix operators must be spaced.
Line 566: func-style - Expected a function expression.
Line 570: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 571: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 585: func-style - Expected a function expression.
Line 589: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 590: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 608: space-infix-ops - Infix operators must be spaced.
Line 611: space-infix-ops - Infix operators must be spaced.
Line 614: space-infix-ops - Infix operators must be spaced.
Line 617: space-infix-ops - Infix operators must be spaced.
Line 624: func-style - Expected a function expression.
Line 631: func-style - Expected a function expression.
Line 635: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 637: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 638: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 639: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 640: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 641: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 677: space-after-keywords - Keyword "while" must be followed by whitespace.
Line 712: no-shadow - elements is already declared in the upper scope.
Line 708: func-style - Expected a function expression.
Line 711: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 712: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 715: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 727: space-infix-ops - Infix operators must be spaced.
Line 734: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 773: func-style - Expected a function expression.
Line 776: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 779: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 779: space-infix-ops - Infix operators must be spaced.
Line 935: func-style - Expected a function expression.
Line 940: space-infix-ops - Infix operators must be spaced.
Line 973: no-shadow - elements is already declared in the upper scope.
Line 957: func-style - Expected a function expression.
Line 970: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 973: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 979: space-infix-ops - Infix operators must be spaced.
Line 1001: func-style - Expected a function expression.
Line 1008: space-infix-ops - Infix operators must be spaced.
Line 1019: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1051: space-infix-ops - Infix operators must be spaced.
Line 1053: space-infix-ops - Infix operators must be spaced.
Line 1055: space-infix-ops - Infix operators must be spaced.
Line 1073: func-style - Expected a function expression.
Line 1081: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1082: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1083: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1084: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1086: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1087: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1088: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1089: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1089: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1112: space-infix-ops - Infix operators must be spaced.
Line 1126: space-infix-ops - Infix operators must be spaced.
Line 1128: space-infix-ops - Infix operators must be spaced.
Line 1194: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1195: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1196: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1218: space-infix-ops - Infix operators must be spaced.
Line 1328: no-shadow - dropTarget is already declared in the upper scope.
Line 1322: func-style - Expected a function expression.
Line 1326: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1344: space-infix-ops - Infix operators must be spaced.
Line 1384: func-style - Expected a function expression.
Line 1403: func-style - Expected a function expression.
Line 1445: func-style - Expected a function expression.
Line 1448: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1458: func-style - Expected a function expression.
Line 1463: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1478: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1511: func-style - Expected a function expression.
Line 1528: func-style - Expected a function expression.
Line 1555: func-style - Expected a function expression.
Line 1566: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1567: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1568: space-infix-ops - Infix operators must be spaced.
Line 1646: func-style - Expected a function expression.
Line 1679: func-style - Expected a function expression.
Line 1684: func-style - Expected a function expression.
Line 1701: func-style - Expected a function expression.
Line 1713: space-after-keywords - Keyword "if" must be followed by whitespace.
Line 1731: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1732: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 1737: no-space-before-semi - Expression called with trailing whitespace before semicolon
Line 1738: no-space-before-semi - Expression called with trailing whitespace before semicolon
Line 1798: space-infix-ops - Infix operators must be spaced.
Line 1808: space-infix-ops - Infix operators must be spaced.
Line 1815: space-infix-ops - Infix operators must be spaced.
Line 1849: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2156: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2157: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2158: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2159: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2172: space-infix-ops - Infix operators must be spaced.
Line 2172: space-infix-ops - Infix operators must be spaced.
Line 2173: space-infix-ops - Infix operators must be spaced.
Line 2175: space-infix-ops - Infix operators must be spaced.
Line 2228: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2228: space-infix-ops - Infix operators must be spaced.
Line 2363: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2368: no-else-return - Unexpected 'else' after 'return'.
Line 2377: no-else-return - Unexpected 'else' after 'return'.
Line 2386: no-else-return - Unexpected 'else' after 'return'.
Line 2395: no-else-return - Unexpected 'else' after 'return'.
Line 2404: no-else-return - Unexpected 'else' after 'return'.
Line 2444: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2445: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2446: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2596: no-spaced-func - Unexpected space between function name and paren.
Line 2596: space-infix-ops - Infix operators must be spaced.
Line 2597: no-spaced-func - Unexpected space between function name and paren.
Line 2597: space-infix-ops - Infix operators must be spaced.
Line 2598: no-spaced-func - Unexpected space between function name and paren.
Line 2598: space-infix-ops - Infix operators must be spaced.
Line 2599: space-infix-ops - Infix operators must be spaced.
Line 2601: no-spaced-func - Unexpected space between function name and paren.
Line 2629: no-spaced-func - Unexpected space between function name and paren.
Line 2708: sort-vars - Variables within the same declaration block should be sorted alphabetically
Line 2726: space-infix-ops - Infix operators must be spaced.
Line 2905: no-space-before-semi - Expression called with trailing whitespace before semicolon
Line 2906: no-space-before-semi - Expression called with trailing whitespace before semicolon
Line 2907: no-space-before-semi - Expression called with trailing whitespace before semicolon
Line 2909: space-infix-ops - Infix operators must be spaced.
Line 2924: space-infix-ops - Infix operators must be spaced.
public/js/lodash.js:
Line 6785: eol-last - Newline required at end of file but not found.
Line 10: no-extra-semi - Unnecessary semicolon.
Line 13: no-shadow-restricted-names - Shadowing of global property "undefined".
Line 23: new-parens - Missing '()' invoking a constructor
Line 132: quotes - Strings must use singlequote.
Line 132: quotes - Strings must use singlequote.
Line 170: func-style - Expected a function expression.
Line 191: func-style - Expected a function expression.
Line 195: eqeqeq - Expected '===' and instead saw '=='.
Line 195: no-eq-null - Use ‘===’ to compare with ‘null’.
Line 198: eqeqeq - Expected '!==' and instead saw '!='.
Line 198: eqeqeq - Expected '!==' and instead saw '!='.
Line 201: eqeqeq - Expected '===' and instead saw '=='.
Line 204: eqeqeq - Expected '===' and instead saw '=='.
Line 215: func-style - Expected a function expression.
Line 219: eqeqeq - Expected '===' and instead saw '=='.