-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlint_output.txt
More file actions
1102 lines (900 loc) · 143 KB
/
lint_output.txt
File metadata and controls
1102 lines (900 loc) · 143 KB
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
> hyphon-daw@1.0.0 lint /app
> eslint .
/app/assembly/oscillators.ts
13:0 error Parsing error: Decorators are not valid here
/app/emsdk/upstream/emscripten/src/Fetch.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/IDBStore.js
9:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/audio_worklet.js
15:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libaddfunction.js
13:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libasync.js
22:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libatomic.js
17:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libautodebug.js
8:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libbase64.js
25:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libbootstrap.js
10:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libbrowser.js
14:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libc_preprocessor.js
46:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libccall.js
9:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libcore.js
49:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libdylink.js
9:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libegl.js
51:23 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libembind.js
6:1 error Parsing error: Unexpected token #include
/app/emsdk/upstream/emscripten/src/lib/libembind_gen.js
5:1 error Parsing error: Unexpected token #include
/app/emsdk/upstream/emscripten/src/lib/libembind_shared.js
108:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libemval.js
23:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libeventloop.js
47:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libexceptions.js
8:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libexceptions_stub.js
24:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libexports.js
19:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libfetch.js
7:1 error Parsing error: Unexpected token #include
/app/emsdk/upstream/emscripten/src/lib/libfs.js
12:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libfs_shared.js
11:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libgetvalue.js
16:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libglemu.js
38:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libglfw.js
92:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libglut.js
433:51 error Parsing error: Unexpected token )
/app/emsdk/upstream/emscripten/src/lib/libhtml5.js
9:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libhtml5_webgl.js
10:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libidbfs.js
16:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libidbstore.js
7:1 error Parsing error: Unexpected token #include
/app/emsdk/upstream/emscripten/src/lib/libint53.js
8:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/liblegacy.js
33:3 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/liblz4.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libmath.js
27:18 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libmemfs.js
12:43 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libmemoryprofiler.js
3:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libnodefs.js
8:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libnoderawfs.js
40:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libopenal.js
50:29 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libpath.js
77:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libpipefs.js
15:40 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libpromise.js
22:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libproxyfs.js
199:25 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libpthread.js
10:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libpthread_stub.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libsdl.js
65:19 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libsockfs.js
13:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libstack_trace.js
11:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libstrings.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libsyscall.js
9:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libtime.js
13:26 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libtrace.js
256:26 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libtty.js
13:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libuuid.js
44:18 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libwasi.js
8:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwasm_worker.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwasmfs.js
40:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwasmfs_fetch.js
98:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwasmfs_js_file.js
35:20 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libwasmfs_jsimpl.js
14:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwasmfs_node.js
13:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwasmfs_opfs.js
17:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwebaudio.js
1:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwebgl.js
48:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwebgl2.js
18:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/lib/libwebsocket.js
23:37 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/src/lib/libwget.js
36:89 error Parsing error: Unexpected token (
/app/emsdk/upstream/emscripten/src/lib/libworkerfs.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/memoryprofiler.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/minimum_runtime_check.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/modularize.js
10:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/node_shell_read.js
11:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/polyfill/bigint64array.js
1:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/postamble.js
9:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/postamble_minimal.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/postamble_modularize.js
17:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/postlibrary.js
4:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/preamble.js
17:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/preamble_minimal.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/pthread_esm_startup.mjs
12:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_asan.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_common.js
7:1 error Parsing error: Unexpected token #include
/app/emsdk/upstream/emscripten/src/runtime_debug.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_exceptions.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_init_memory.js
8:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_pthread.js
11:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_safe_heap.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/runtime_stack_check.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/shell.js
6:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/shell_minimal.js
7:1 error Parsing error: Unexpected token #include
/app/emsdk/upstream/emscripten/src/source_map_support.js
94:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/threadprofiler.js
1:1 error Parsing error: Unexpected token #preprocess
/app/emsdk/upstream/emscripten/src/wasm2js.js
17:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/wasm_worker.js
10:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/src/web_or_worker_shell_read.js
7:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/test/core/test_jslib_i64_params.js
4:21 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/test/core/test_module_wasm_memory.js
1:1 error Parsing error: Unexpected token #preprocess
/app/emsdk/upstream/emscripten/test/embind/test.post.js
1:3 error Parsing error: 'return' outside of function
/app/emsdk/upstream/emscripten/test/embind/test.pre.js
2:1 error Parsing error: Unexpected token
/app/emsdk/upstream/emscripten/test/embind/test_i64_binding.js
10:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/test/error_in_js_libraries.js
1:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/test/jslib/test_jslib_custom_settings.js
3:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/test/modularize_post_js.js
1:1 error Parsing error: Unexpected token #preprocess
/app/emsdk/upstream/emscripten/test/other/embind_tsgen.d.ts
12:3 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
31:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
78:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
124:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
132:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
145:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
156:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
157:17 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
159:19 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
162:21 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_bigint.d.ts
2:11 error An empty interface declaration allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowInterfaces' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_constant_only.d.ts
2:11 error An empty interface declaration allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowInterfaces' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_ignore_1.d.ts
3:37 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
3:45 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
4:41 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
4:49 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:37 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:48 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:58 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:72 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:87 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:108 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:121 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
5:137 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
6:33 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
6:41 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
7:41 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
7:49 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
8:39 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
8:47 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
9:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
10:38 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
23:3 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
42:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
89:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
135:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
143:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
156:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
167:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
168:17 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
170:19 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
171:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
171:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
173:21 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_ignore_2.d.ts
2:11 error An empty interface declaration allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowInterfaces' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
11:3 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
30:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
77:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
123:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
131:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
144:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
155:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
156:17 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
158:19 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
159:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
159:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
161:21 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_ignore_3.d.ts
12:3 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
31:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
78:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
124:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
132:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
145:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
156:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
157:17 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
159:19 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
162:21 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_ignore_7.d.ts
3:25 error Prefer using the primitive `bigint` as a type name, rather than the upper-cased `BigInt` @typescript-eslint/no-wrapper-object-types
12:3 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
31:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
78:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
124:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
132:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
145:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
156:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
157:17 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
159:19 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
162:21 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_jspi.d.ts
2:11 error An empty interface declaration allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowInterfaces' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_main.ts
45:9 error 'valString' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_module.d.ts
12:3 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
31:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
78:18 error An interface declaring no members is equivalent to its supertype @typescript-eslint/no-empty-object-type
124:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
132:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
145:8 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
156:14 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
157:17 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
159:19 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
160:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
162:21 error The `{}` ("empty object") type allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowObjectTypes' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/embind_tsgen_wasm64.d.ts
2:11 error An empty interface declaration allows any non-nullish value, including literals like `0` and `""`.
- If that's what you want, disable this lint rule with an inline comment or configure the 'allowInterfaces' rule option.
- If you want a type meaning "any object", you probably want `object` instead.
- If you want a type meaning "any value", you probably want `unknown` instead @typescript-eslint/no-empty-object-type
/app/emsdk/upstream/emscripten/test/other/test_emit_tsd.d.ts
13:45 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/emsdk/upstream/emscripten/test/other/test_extra_struct_info.js
1:38 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/test/other/test_parseTools.js
5:40 error Parsing error: Unexpected token {
/app/emsdk/upstream/emscripten/test/other/test_split_module.post.js
1:1 error Parsing error: Unexpected token #preprocess
/app/emsdk/upstream/emscripten/test/other/test_tsd.ts
3:16 error 'go' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
6:7 error 'result' is never reassigned. Use 'const' instead prefer-const
6:7 error 'result' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
/app/emsdk/upstream/emscripten/test/return64bit/testbindend.js
2:1 error Parsing error: Unexpected token }
/app/emsdk/upstream/emscripten/test/return64bit/testbindstart.js
2:1 error Parsing error: Unexpected token
/app/emsdk/upstream/emscripten/test/warning_in_js_libraries.js
1:1 error Parsing error: Unexpected token #if
/app/emsdk/upstream/emscripten/tools/acorn-optimizer.mjs
397:40 warning Unused eslint-disable directive (no problems were reported from 'no-empty')
/app/src/App.tsx
35:10 error 'Harmonizer' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
35:45 error 'HARMONIZE_PRESETS' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
36:10 error 'AISongImporter' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
36:26 error 'parseAISongJSON' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
91:20 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
92:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
98:20 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
128:7 error 'EMPTY_PATTERN' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
185:39 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
190:37 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
295:12 error 'masterVolume' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
296:12 error 'globalPan' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
363:9 warning React Hook useMemo has an unnecessary dependency: 'sampleBuffers'. Either exclude it or remove the dependency array react-hooks/exhaustive-deps
370:9 warning React Hook useMemo has an unnecessary dependency: 'sampleBuffers'. Either exclude it or remove the dependency array react-hooks/exhaustive-deps
457:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
460:38 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
460:92 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
567:66 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
582:96 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
582:109 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
728:11 error 'handleMasterVolume' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
729:11 error 'handleMasterVolumeKeyDown' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
730:11 error 'handleMasterVolumeReset' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
732:11 error 'handleGlobalPan' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
733:11 error 'handleGlobalPanKeyDown' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
734:11 error 'handleGlobalPanReset' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
798:68 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
815:8 warning React Hook useCallback has an unnecessary dependency: 'activeSamplerBank'. Either exclude it or remove the dependency array react-hooks/exhaustive-deps
918:79 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
933:8 warning React Hook useCallback has an unnecessary dependency: 'activeSamplerBank'. Either exclude it or remove the dependency array react-hooks/exhaustive-deps
1022:69 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1025:76 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1048:8 warning React Hook useCallback has an unnecessary dependency: 'activeSamplerBank'. Either exclude it or remove the dependency array react-hooks/exhaustive-deps
1078:57 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1126:119 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1150:45 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1168:11 warning The 'handleClearPattern' function makes the dependencies of useMemo Hook (at line 1680) change on every render. Move it inside the useMemo callback. Alternatively, wrap the definition of 'handleClearPattern' in its own useCallback() Hook react-hooks/exhaustive-deps
1170:45 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1194:11 warning The 'handleSaveSong' function makes the dependencies of useMemo Hook (at line 1680) change on every render. Move it inside the useMemo callback. Alternatively, wrap the definition of 'handleSaveSong' in its own useCallback() Hook react-hooks/exhaustive-deps
1199:52 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1199:3242 warning React Hook useCallback has an unnecessary dependency: 'sampleBuffers'. Either exclude it or remove the dependency array react-hooks/exhaustive-deps
1211:82 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
1217:86 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1307:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars
1519:378 error Optional chain expressions can return undefined by design - using a non-null assertion is unsafe and wrong @typescript-eslint/no-non-null-asserted-optional-chain
1519:926 warning React Hook useMemo has a missing dependency: 'handleTtsPhraseChange'. Either include it or remove the dependency array react-hooks/exhaustive-deps
1753:8 warning React Hook useMemo has missing dependencies: 'activeAlignment', 'automationParam', 'handleAutomationChange', 'handleDrawEnter', 'handleNotePropertyChange', 'handlePhonemeUpdate', 'handlePitchChange', 'isDrawing', 'melodicMode', 'sampleBuffers', and 'viewMode'. Either include them or remove the dependency array react-hooks/exhaustive-deps
1797:41 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
1800:76 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/AudioDSP.test.ts
85:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
108:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
127:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
153:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
227:31 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
228:31 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/FormantShifter.test.ts
20:46 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
29:49 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
229:62 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
230:60 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/HardwareModule.gpu.test.tsx
12:26 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
13:21 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
14:22 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
15:36 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
16:35 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
84:15 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
94:23 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/Open303Config.test.ts
26:7 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
30:26 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
36:42 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
44:37 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
47:32 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
67:14 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
70:88 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
135:26 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/PatternSelector.test.tsx
42:42 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/SamplerPanel.perf.test.tsx
18:6 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/SamplerPanel.test.tsx
22:6 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/SamplerPanelSlice.test.tsx
22:6 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
53:5 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
66:7 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
78:7 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
93:7 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
109:7 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
/app/src/__tests__/SingingVoice.integration.test.ts
47:55 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
54:50 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
138:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/SingingVoiceSlice.test.ts
47:55 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
52:26 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
55:50 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/WasmOscillator.test.ts
24:51 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
25:27 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
31:78 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
32:87 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
39:14 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
51:24 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
57:24 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/audioExport.perf.test.ts
25:45 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/__tests__/trackFreezer.test.ts
21:49 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
79:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
98:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
123:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
152:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/audio-worklets/open303-processor.ts
78:58 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
90:40 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
135:39 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
158:30 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
168:55 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
177:47 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
207:54 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
232:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars
243:41 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
277:20 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
309:63 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
320:63 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
327:63 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
334:63 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
341:63 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
378:39 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
398:34 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
435:59 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
444:38 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
498:54 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
511:54 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
529:54 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
537:21 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
543:55 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
550:45 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
593:58 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
631:21 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
642:38 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
652:25 error Empty block statement no-empty
/app/src/audio-worklets/rubberband-processor.ts
3:1 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
12:1 error Unexpected var, use let or const instead no-var
14:17 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
17:81 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
24:23 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
67:5 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
93:11 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
151:9 error Unexpected lexical declaration in case block no-case-declarations
152:9 error Unexpected lexical declaration in case block no-case-declarations
174:9 error Unexpected lexical declaration in case block no-case-declarations
229:5 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
/app/src/audio-worklets/sustain-processor.ts
2:1 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
10:1 error Unexpected var, use let or const instead no-var
12:18 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
15:81 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
56:25 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
85:25 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
/app/src/audio/playback/samplerPlayback.ts
257:40 error Empty block statement no-empty
/app/src/components/AISongModal.tsx
24:8 error 'AIImportResultType' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
629:10 error 'dragCounter' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
740:6 warning React Hook useEffect has missing dependencies: 'handleClose' and 'handleImport'. Either include them or remove the dependency array react-hooks/exhaustive-deps
/app/src/components/CloudLibrary.tsx
10:24 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
13:24 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
14:24 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
15:27 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
68:8 warning React Hook useEffect has a missing dependency: 'loadLibrary'. Either include it or remove the dependency array react-hooks/exhaustive-deps
72:100 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
79:31 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
110:23 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
135:89 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
169:36 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
198:67 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
226:79 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/CloudStatus.tsx
42:9 error Error: Calling setState synchronously within an effect can trigger cascading renders
Effects are intended to synchronize state between React and external systems such as manually updating the DOM, state management libraries, or other platform APIs. In general, the body of an effect should do one or both of the following:
* Update external systems with the latest state from React.
* Subscribe for updates from some external system, calling setState in a callback function when external state changes.
Calling setState synchronously within an effect body causes cascading renders that can hurt performance, and is not recommended. (https://react.dev/learn/you-might-not-need-an-effect).
/app/src/components/CloudStatus.tsx:42:9
40 |
41 | // Initial Check
> 42 | checkHealth();
| ^^^^^^^^^^^ Avoid calling setState() directly within an effect
43 | // Poll every 30s
44 | const interval = setInterval(checkHealth, 30000);
45 | return () => { react-hooks/set-state-in-effect
49:8 warning React Hook useEffect has a missing dependency: 'checkHealth'. Either include it or remove the dependency array react-hooks/exhaustive-deps
/app/src/components/LiveKeyboard.tsx
21:7 error 'KEY_TO_NOTE' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
171:11 error 'topColor' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
372:22 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
373:22 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
377:40 error 'noteIdx' is defined but never used. Allowed unused args must match /^_/u @typescript-eslint/no-unused-vars
/app/src/components/LyricMapper.tsx
26:13 error Error: Calling setState synchronously within an effect can trigger cascading renders
Effects are intended to synchronize state between React and external systems such as manually updating the DOM, state management libraries, or other platform APIs. In general, the body of an effect should do one or both of the following:
* Update external systems with the latest state from React.
* Subscribe for updates from some external system, calling setState in a callback function when external state changes.
Calling setState synchronously within an effect body causes cascading renders that can hurt performance, and is not recommended. (https://react.dev/learn/you-might-not-need-an-effect).
/app/src/components/LyricMapper.tsx:26:13
24 | useEffect(() => {
25 | if (isOpen) {
> 26 | setText(initialText);
| ^^^^^^^ Avoid calling setState() directly within an effect
27 | }
28 | }, [isOpen, initialText]);
29 | react-hooks/set-state-in-effect
/app/src/components/MagicKnob.tsx
82:64 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/MainSequencer.tsx
36:7 error 'getTrackStyles' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
146:76 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
147:72 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
151:69 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
152:65 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
158:28 error Error: This value cannot be modified
Modifying component props or hook arguments is not allowed. Consider using a local variable instead.
/app/src/components/MainSequencer.tsx:158:28
156 | <g
157 | transform={`translate(${x}, 0)`}
> 158 | ref={(el) => { refsArray.current[stepIndex] = el; }}
| ^^^^^^^^^^^^^^^^^ `refsArray` cannot be modified
159 | className="automation-step"
160 | role="slider"
161 | aria-label={`${rowLabel} automation step ${stepIndex + 1}`} react-hooks/immutability
196:79 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
238:84 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
239:80 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
242:77 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
243:73 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
257:60 error Error: This value cannot be modified
Modifying component props or hook arguments is not allowed. Consider using a local variable instead.
/app/src/components/MainSequencer.tsx:257:60
255 |
256 | return (
> 257 | <g transform={`translate(${x}, 0)`} ref={(el) => { refsArray.current[stepIndex] = el; }} className="svg-step" role="button" tabIndex={0} aria-label={`${rowLabel} step ${stepIndex + 1}`} onPointerDown={handlePointerDown} onPointerEnter={handlePointerEnter} onKeyDown={(e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); onToggle(rowKey, stepIndex, e); } }} onContextMenu={(e) => e.preventDefault()} cursor="pointer" style={{ transition: 'all 0.1s ease', touchAction: 'none', '--focus-color': focusColor } as React.CSSProperties}>
| ^^^^^^^^^^^^^^^^^ `refsArray` cannot be modified
258 | {active && <rect className="step-glow" x={-4} y={-4} width={totalWidth + 8} height={height + 8} rx={6} fill={color} fillOpacity={0.4} filter="blur(6px)" />}
259 | {isRangeSelected && <rect className="step-selection" x={-2} y={-2} width={totalWidth + 4} height={height + 4} rx={4} fill="none" stroke="#ffffff" strokeWidth={2} strokeOpacity={0.8} style={{ pointerEvents: 'none' }} />}
260 | <rect x={0} y={0} width={totalWidth} height={height} rx={3} fill="#050505" /> react-hooks/immutability
299:64 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
300:73 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
300:92 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
301:51 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
302:22 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
495:52 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
529:15 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
619:120 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
621:130 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/MelodicSequencerRow.tsx
86:11 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
209:28 error Error: Cannot access refs during render
React refs are values that are not needed for rendering. Refs should only be accessed outside of render, such as in event handlers or effects. Accessing a ref value (the `current` property) during render can cause your component not to update as expected (https://react.dev/reference/react/useRef).
/app/src/components/MelodicSequencerRow.tsx:209:28
207 | length={length}
208 | isSlide={!!stepData?.slide}
> 209 | isCurrent={i === lastActiveIndexRef.current}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ Cannot access ref value during render
210 | rowLabel={label}
211 | rowKey={rowKey}
212 | onToggle={onToggle} react-hooks/refs
/app/src/components/MelodicStep.tsx
133:74 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
134:70 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
138:69 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
139:65 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
173:70 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
174:66 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
179:65 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
180:61 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/PhonemePainter.tsx
19:10 error 'PhonemeAligner' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
19:53 error 'PhonemeSegment' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
82:3 error 'index' is defined but never used. Allowed unused args must match /^_/u @typescript-eslint/no-unused-vars
84:3 error 'pixelsPerUnit' is defined but never used. Allowed unused args must match /^_/u @typescript-eslint/no-unused-vars
90:3 error 'onPitchBendChange' is defined but never used. Allowed unused args must match /^_/u @typescript-eslint/no-unused-vars
339:10 error 'playbackTime' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
339:24 error 'setPlaybackTime' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
340:10 error 'isPlaying' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
340:21 error 'setIsPlaying' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
346:9 error 'TIMELINE_HEIGHT' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
384:11 error 'newStart' is never reassigned. Use 'const' instead prefer-const
397:11 error 'startX' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
491:13 error 'stepDuration' is assigned a value but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
493:74 error 'idx' is defined but never used. Allowed unused args must match /^_/u @typescript-eslint/no-unused-vars
/app/src/components/RbsImportModal.tsx
17:3 error 'RbsParser' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
18:3 error 'RbsImporter' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
24:8 error 'RbsParserResult' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
210:7 error Error: Calling setState synchronously within an effect can trigger cascading renders
Effects are intended to synchronize state between React and external systems such as manually updating the DOM, state management libraries, or other platform APIs. In general, the body of an effect should do one or both of the following:
* Update external systems with the latest state from React.
* Subscribe for updates from some external system, calling setState in a callback function when external state changes.
Calling setState synchronously within an effect body causes cascading renders that can hurt performance, and is not recommended. (https://react.dev/learn/you-might-not-need-an-effect).
/app/src/components/RbsImportModal.tsx:210:7
208 | useEffect(() => {
209 | if (!isOpen) {
> 210 | setDroppedFile(null);
| ^^^^^^^^^^^^^^ Avoid calling setState() directly within an effect
211 | setParsedData(null);
212 | setParseState({
213 | stage: 'idle', react-hooks/set-state-in-effect
/app/src/components/SamplerPanel.tsx
21:61 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
130:11 warning The 'currentParams' logical expression could make the dependencies of useCallback Hook (at line 292) change on every render. To fix this, wrap the initialization of 'currentParams' in its own useMemo() Hook react-hooks/exhaustive-deps
282:21 error Unexpected lexical declaration in case block no-case-declarations
415:11 warning The 'loadAudioFile' function makes the dependencies of useCallback Hook (at line 456) change on every render. To fix this, wrap the definition of 'loadAudioFile' in its own useCallback() Hook react-hooks/exhaustive-deps
/app/src/components/SamplerVoicePanel.tsx
3:10 error 'Harmonizer' is defined but never used. Allowed unused vars must match /^_/u @typescript-eslint/no-unused-vars
/app/src/components/Studio3D.tsx
86:61 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/sequencer/Sequencer.tsx
21:43 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
22:51 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
67:116 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/sequencer/SequencerRow.tsx
13:13 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
17:43 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
18:51 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/app/src/components/sequencer/SvgStep.tsx
14:43 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
80:60 error Error: This value cannot be modified
Modifying component props or hook arguments is not allowed. Consider using a local variable instead.
/app/src/components/sequencer/SvgStep.tsx:80:60
78 |
79 | return (
> 80 | <g transform={`translate(${x}, 0)`} ref={(el) => { refsArray.current[stepIndex] = el; }} className="svg-step" role="button" tabIndex={0} aria-label={`${rowLabel} step ${stepIndex + 1}`} onPointerDown={handlePointerDown} onPointerEnter={handlePointerEnter} onKeyDown={(e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); onToggle(rowKey, stepIndex, e); } }} onContextMenu={(e) => e.preventDefault()} cursor="pointer" style={{ transition: 'all 0.1s ease', touchAction: 'none', '--focus-color': focusColor } as CSSProperties}>
| ^^^^^^^^^^^^^^^^^ `refsArray` cannot be modified
81 | {active && <rect className="step-glow" x={-4} y={-4} width={totalWidth + 8} height={height + 8} rx={6} fill={color} fillOpacity={0.4} filter="blur(6px)" />}
82 | {isRangeSelected && <rect className="step-selection" x={-2} y={-2} width={totalWidth + 4} height={height + 4} rx={4} fill="none" stroke="#ffffff" strokeWidth={2} strokeOpacity={0.8} style={{ pointerEvents: 'none' }} />}
83 | <rect x={0} y={0} width={totalWidth} height={height} rx={3} fill="#050505" /> react-hooks/immutability
/app/src/custom.d.ts
8:22 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any