aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 5a81064d4863c587612e47188aa1ce1c9e65e644 (plain)
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
{
    "root": true,
    "extends": [
        "eslint:recommended",
        "plugin:jsonc/recommended-with-json",
        "plugin:eslint-comments/recommended"
    ],
    "parser": "@typescript-eslint/parser",
    "parserOptions": {
        "ecmaVersion": 2022,
        "sourceType": "module",
        "ecmaFeatures": {
            "globalReturn": false,
            "impliedStrict": true
        },
        "project": [
            "./jsconfig.json",
            "./dev/jsconfig.json",
            "./test/jsconfig.json",
            "./benches/jsconfig.json"
        ]
    },
    "env": {
        "browser": true,
        "es2022": true,
        "webextensions": true
    },
    "plugins": [
        "no-unsanitized",
        "header",
        "jsdoc",
        "jsonc",
        "unused-imports",
        "@typescript-eslint",
        "@stylistic",
        "unicorn",
        "sonarjs",
        "import"
    ],
    "ignorePatterns": [
        "/ext/lib/",
        "/dev/lib/handlebars/"
    ],
    "rules": {
        "accessor-pairs": "error",
        "capitalized-comments": [
            "error",
            "always",
            {
                "ignorePattern": "case|[a-z]+[A-Z0-9]|[a-z]+\\.\\w",
                "ignoreInlineComments": true,
                "ignoreConsecutiveComments": true
            }
        ],
        "curly": ["error", "all"],
        "default-case-last": "error",
        "dot-notation": "error",
        "eqeqeq": "error",
        "func-names": ["error", "always"],
        "guard-for-in": "error",
        "grouped-accessor-pairs": "error",
        "new-cap": "error",
        "no-alert": "error",
        "no-case-declarations": "error",
        "no-caller": "error",
        "no-const-assign": "error",
        "no-constant-condition": ["error", {"checkLoops": false}],
        "no-constructor-return": "error",
        "no-duplicate-imports": "error",
        "no-eval": "error",
        "no-extend-native": "error",
        "no-global-assign": "error",
        "no-implicit-globals": "error",
        "no-implied-eval": "error",
        "no-new": "error",
        "no-new-native-nonconstructor": "error",
        "no-octal": "error",
        "no-octal-escape": "error",
        "no-param-reassign": "off",
        "no-promise-executor-return": "error",
        "no-prototype-builtins": "error",
        "no-restricted-syntax": [
            "error",
            {
                "message": "Avoid using JSON.parse(), prefer parseJson.",
                "selector": "MemberExpression[object.name=JSON][property.name=parse]"
            },
            {
                "message": "Avoid using Response.json(), prefer readResponseJson.",
                "selector": "MemberExpression[property.name=json]"
            }
        ],
        "no-self-compare": "error",
        "no-sequences": "error",
        "no-shadow": ["error", {"builtinGlobals": false}],
        "no-shadow-restricted-names": "error",
        "no-template-curly-in-string": "error",
        "no-undef": "error",
        "no-undefined": "error",
        "no-underscore-dangle": ["error", {"allowAfterThis": true, "allowAfterSuper": false, "allowAfterThisConstructor": false}],
        "no-unexpected-multiline": "error",
        "no-unneeded-ternary": "error",
        "no-unused-vars": ["error", {"vars": "local", "args": "after-used", "argsIgnorePattern": "^_", "caughtErrors": "none"}],
        "no-unused-expressions": "error",
        "no-var": "error",
        "no-with": "error",
        "prefer-const": ["error", {"destructuring": "all"}],
        "radix": "error",
        "require-atomic-updates": "off",
        "sort-imports": "off",
        "yoda": ["error", "never"],

        "@stylistic/array-bracket-newline": ["error", "consistent"],
        "@stylistic/array-bracket-spacing": ["error", "never"],
        "@stylistic/array-element-newline": ["error", "consistent"],
        "@stylistic/arrow-parens": ["error", "always"],
        "@stylistic/arrow-spacing": ["error", {"before": true, "after": true}],
        "@stylistic/block-spacing": ["error", "always"],
        "@stylistic/brace-style": ["error", "1tbs", {"allowSingleLine": true}],
        "@stylistic/comma-dangle": ["error", "always-multiline"],
        "@stylistic/comma-spacing": ["error", {"before": false, "after": true}],
        "@stylistic/comma-style": ["error", "last"],
        "@stylistic/computed-property-spacing": ["error", "never"],
        "@stylistic/dot-location": ["error", "property"],
        "@stylistic/eol-last": ["error", "always"],
        "@stylistic/func-call-spacing": ["error", "never"],
        "@stylistic/function-call-argument-newline": ["error", "consistent"],
        "@stylistic/function-call-spacing": ["error", "never"],
        "@stylistic/function-paren-newline": ["error", "multiline-arguments"],
        "@stylistic/generator-star-spacing": ["error", "before"],
        "@stylistic/implicit-arrow-linebreak": ["error", "beside"],
        "@stylistic/indent": ["error", 4, {"SwitchCase": 1, "MemberExpression": 1, "flatTernaryExpressions": true, "ignoredNodes": ["ConditionalExpression"]}],
        "@stylistic/indent-binary-ops": ["error", 0],
        "@stylistic/key-spacing": ["error", {"beforeColon": false, "afterColon": true, "mode": "strict"}],
        "@stylistic/keyword-spacing": ["error", {"before": true, "after": true}],
        "@stylistic/linebreak-style": ["error", "unix"],
        "@stylistic/lines-around-comment": "off",
        "@stylistic/lines-between-class-members": ["error", "always", {"exceptAfterSingleLine": true}],
        "@stylistic/max-len": "off",
        "@stylistic/max-statements-per-line": ["error", {"max": 2}],
        "@stylistic/member-delimiter-style": [
            "error",
            {
                "multiline": {"delimiter": "semi", "requireLast": true},
                "singleline": {"delimiter": "comma", "requireLast": false},
                "multilineDetection": "brackets"
            }
        ],
        "@stylistic/multiline-ternary": ["error", "always-multiline"],
        "@stylistic/new-parens": "error",
        "@stylistic/newline-per-chained-call": ["error", {"ignoreChainWithDepth": 3}],
        "@stylistic/no-confusing-arrow": "error",
        "@stylistic/no-extra-parens": "off",
        "@stylistic/no-extra-semi": "error",
        "@stylistic/no-floating-decimal": "error",
        "@stylistic/no-mixed-operators": ["error", {"allowSamePrecedence": true, "groups": [["&&", "||"]]}],
        "@stylistic/no-mixed-spaces-and-tabs": "error",
        "@stylistic/no-multi-spaces": "error",
        "@stylistic/no-multiple-empty-lines": ["error", {"max": 2, "maxEOF": 0, "maxBOF": 0}],
        "@stylistic/no-tabs": "error",
        "@stylistic/no-trailing-spaces": "error",
        "@stylistic/no-whitespace-before-property": "error",
        "@stylistic/nonblock-statement-body-position": ["error", "beside"],
        "@stylistic/object-curly-newline": "error",
        "@stylistic/object-curly-spacing": ["error", "never"],
        "@stylistic/object-property-newline": ["error", {"allowAllPropertiesOnSameLine": true}],
        "@stylistic/one-var-declaration-per-line": ["error", "initializations"],
        "@stylistic/operator-linebreak": ["error", "after"],
        "@stylistic/padded-blocks": ["error", "never"],
        "@stylistic/padding-line-between-statements": [
            "error",
            {"blankLine": "always", "prev": "*", "next": "import"},
            {"blankLine": "always", "prev": "import", "next": "*"},
            {"blankLine": "always", "prev": "*", "next": "export"},
            {"blankLine": "always", "prev": "import", "next": "let"},
            {"blankLine": "always", "prev": "import", "next": "const"},
            {"blankLine": "always", "prev": "export", "next": "let"},
            {"blankLine": "always", "prev": "export", "next": "const"},
            {"blankLine": "always", "prev": "export", "next": "export"},
            {"blankLine": "always", "prev": "export", "next": "type"},
            {"blankLine": "always", "prev": "type", "next": "export"},
            {"blankLine": "always", "prev": "type", "next": "type"},
            {"blankLine": "never", "prev": "import", "next": "import"}
        ],
        "@stylistic/quote-props": ["error", "consistent-as-needed", {"numbers": true}],
        "@stylistic/quotes": ["error", "single", "avoid-escape"],
        "@stylistic/rest-spread-spacing": ["error", "never"],
        "@stylistic/semi": "error",
        "@stylistic/semi-spacing": ["error", {"before": false, "after": true}],
        "@stylistic/semi-style": ["error", "last"],
        "@stylistic/space-before-blocks": ["error", "always"],
        "@stylistic/space-before-function-paren": ["error", {"anonymous": "never", "named": "never", "asyncArrow": "always"}],
        "@stylistic/space-in-parens": ["error", "never"],
        "@stylistic/space-infix-ops": ["error", {"int32Hint": false}],
        "@stylistic/space-unary-ops": "error",
        "@stylistic/spaced-comment": ["error", "always"],
        "@stylistic/switch-colon-spacing": ["error", {"after": true, "before": false}],
        "@stylistic/template-curly-spacing": ["error", "never"],
        "@stylistic/template-tag-spacing": ["error", "never"],
        "@stylistic/type-annotation-spacing": [
            "error",
            {
                "before": false,
                "after": true,
                "overrides": {
                    "arrow": {"before": true, "after": true}
                }
            }
        ],
        "@stylistic/type-generic-spacing": "error",
        "@stylistic/type-named-tuple-spacing": "error",
        "@stylistic/wrap-iife": ["error", "inside"],
        "@stylistic/wrap-regex": "off",
        "@stylistic/yield-star-spacing": ["error", {"before": true, "after": false}],

        "no-unsanitized/method": "error",
        "no-unsanitized/property": "error",

        "jsdoc/check-access": "error",
        "jsdoc/check-alignment": "error",
        "jsdoc/check-line-alignment": ["error", "never", {"wrapIndent": "  "}],
        "jsdoc/check-param-names": "error",
        "jsdoc/check-property-names": "error",
        "jsdoc/check-tag-names": "error",
        "jsdoc/empty-tags": "error",
        "jsdoc/check-types": "error",
        "jsdoc/check-values": "error",
        "jsdoc/implements-on-classes": "error",
        "jsdoc/multiline-blocks": "error",
        "jsdoc/no-bad-blocks": "error",
        "jsdoc/no-multi-asterisks": "error",
        "jsdoc/no-undefined-types": "error",
        "jsdoc/require-asterisk-prefix": "error",
        "jsdoc/require-description": "off",
        "jsdoc/require-hyphen-before-param-description": ["error", "never"],
        "jsdoc/require-jsdoc": [
            "error",
            {
                "require": {
                    "ClassDeclaration": false,
                    "FunctionDeclaration": true,
                    "MethodDefinition": false
                },
                "contexts": [
                    "MethodDefinition[kind=constructor]>FunctionExpression>BlockStatement>ExpressionStatement>AssignmentExpression[left.object.type=ThisExpression]",
                    "ClassDeclaration>Classbody>PropertyDefinition",
                    "MethodDefinition[kind!=constructor][kind!=set]",
                    "MethodDefinition[kind=constructor][value.params.length>0]"
                ],
                "checkGetters": "no-setter",
                "checkSetters": "no-getter"
            }
        ],
        "jsdoc/require-param": "error",
        "jsdoc/require-param-description": "off",
        "jsdoc/require-param-name": "error",
        "jsdoc/require-param-type": "error",
        "jsdoc/require-property": "error",
        "jsdoc/require-property-description": "off",
        "jsdoc/require-property-name": "error",
        "jsdoc/require-property-type": "error",
        "jsdoc/require-returns": "error",
        "jsdoc/require-returns-check": "error",
        "jsdoc/require-returns-description": "off",
        "jsdoc/require-returns-type": "error",
        "jsdoc/require-throws": "error",
        "jsdoc/require-yields": "error",
        "jsdoc/require-yields-check": "error",
        "jsdoc/tag-lines": ["error", "never", {"startLines": 0}],
        "jsdoc/valid-types": "error",

        "jsonc/indent": ["error", 4],
        "jsonc/array-bracket-newline": ["error", "consistent"],
        "jsonc/array-bracket-spacing": ["error", "never"],
        "jsonc/array-element-newline": ["error", "consistent"],
        "jsonc/comma-style": ["error", "last"],
        "jsonc/key-spacing": ["error", {"beforeColon": false, "afterColon": true, "mode": "strict"}],
        "jsonc/no-octal-escape": "error",
        "jsonc/object-curly-newline": ["error", {"consistent": true}],
        "jsonc/object-curly-spacing": ["error", "never"],
        "jsonc/object-property-newline": ["error", {"allowAllPropertiesOnSameLine": true}],

        "eslint-comments/no-unused-disable": "error",

        "unused-imports/no-unused-imports": "error",

        "import/extensions": ["error", "ignorePackages"],

        "unicorn/catch-error-name": ["error", {"ignore": ["^(e|error2?)$"]}],
        "unicorn/custom-error-definition": "error",
        "unicorn/empty-brace-spaces": "error",
        "unicorn/error-message": "error",
        "unicorn/expiring-todo-comments": "error",
        "unicorn/explicit-length-check": "error",
        "unicorn/new-for-builtins": "error",
        "unicorn/no-abusive-eslint-disable": "error",
        "unicorn/no-array-for-each": "error",
        "unicorn/no-array-method-this-argument": "error",
        "unicorn/no-array-push-push": "error",
        "unicorn/no-array-reduce": "error",
        "unicorn/no-console-spaces": "error",
        "unicorn/no-document-cookie": "error",
        "unicorn/no-empty-file": "error",
        "unicorn/no-hex-escape": "error",
        "unicorn/no-instanceof-array": "error",
        "unicorn/no-invalid-remove-event-listener": "error",
        "unicorn/no-lonely-if": "error",
        "unicorn/no-nested-ternary": "error",
        "unicorn/no-new-buffer": "error",
        "unicorn/no-object-as-default-parameter": "error",
        "unicorn/no-static-only-class": "error",
        "unicorn/no-thenable": "error",
        "unicorn/no-unnecessary-await": "error",
        "unicorn/no-unnecessary-polyfills": "error",
        "unicorn/no-unreadable-array-destructuring": "error",
        "unicorn/no-unreadable-iife": "error",
        "unicorn/no-useless-fallback-in-spread": "error",
        "unicorn/no-useless-length-check": "error",
        "unicorn/no-useless-promise-resolve-reject": "error",
        "unicorn/no-useless-spread": "error",
        "unicorn/no-useless-switch-case": "error",
        "unicorn/no-useless-undefined": "error",
        "unicorn/no-zero-fractions": "error",
        "unicorn/prefer-array-find": "error",
        "unicorn/prefer-array-flat": "error",
        "unicorn/prefer-array-flat-map": "error",
        "unicorn/prefer-array-index-of": "error",
        "unicorn/prefer-array-some": "error",
        "unicorn/prefer-date-now": "error",
        "unicorn/prefer-default-parameters": "error",
        "unicorn/prefer-dom-node-dataset": "error",
        "unicorn/prefer-dom-node-text-content": "error",
        "unicorn/prefer-event-target": "error",
        "unicorn/prefer-export-from": "error",
        "unicorn/prefer-includes": "error",
        "unicorn/prefer-keyboard-event-key": "error",
        "unicorn/prefer-logical-operator-over-ternary": "error",
        "unicorn/prefer-modern-math-apis": "error",
        "unicorn/prefer-module": "error",
        "unicorn/prefer-native-coercion-functions": "error",
        "unicorn/prefer-negative-index": "error",
        "unicorn/prefer-number-properties": "error",
        "unicorn/prefer-object-from-entries": "error",
        "unicorn/prefer-prototype-methods": "error",
        "unicorn/prefer-reflect-apply": "error",
        "unicorn/prefer-regexp-test": "error",
        "unicorn/prefer-set-has": "error",
        "unicorn/prefer-set-size": "error",
        "unicorn/prefer-spread": "error",
        "unicorn/prefer-string-starts-ends-with": "error",
        "unicorn/prefer-string-trim-start-end": "error",
        "unicorn/prefer-switch": "error",
        "unicorn/prefer-ternary": "error",
        "unicorn/relative-url-style": "error",
        "unicorn/require-array-join-separator": "error",
        "unicorn/require-number-to-fixed-digits-argument": "error",
        "unicorn/template-indent": "error",
        "unicorn/throw-new-error": "error",

        "sonarjs/max-switch-cases": "error",
        "sonarjs/no-all-duplicated-branches": "error",
        "sonarjs/no-collapsible-if": "error",
        "sonarjs/no-collection-size-mischeck": "error",
        "sonarjs/no-duplicated-branches": "error",
        "sonarjs/no-element-overwrite": "error",
        "sonarjs/no-empty-collection": "error",
        "sonarjs/no-extra-arguments": "error",
        "sonarjs/no-gratuitous-expressions": "error",
        "sonarjs/no-identical-conditions": "error",
        "sonarjs/no-identical-expressions": "error",
        "sonarjs/no-identical-functions": "error",
        "sonarjs/no-ignored-return": "error",
        "sonarjs/no-inverted-boolean-check": "error",
        "sonarjs/no-one-iteration-loop": "error",
        "sonarjs/no-redundant-boolean": "error",
        "sonarjs/no-redundant-jump": "error",
        "sonarjs/no-same-line-conditional": "error",
        "sonarjs/no-unused-collection": "error",
        "sonarjs/no-use-of-empty-return-value": "error",
        "sonarjs/no-useless-catch": "error",
        "sonarjs/non-existent-operator": "error",
        "sonarjs/prefer-immediate-return": "error",
        "sonarjs/prefer-object-literal": "error",
        "sonarjs/prefer-single-boolean-return": "error",
        "sonarjs/prefer-while": "error"
    },
    "overrides": [
        {
            "files": [
                "*.js",
                "*.ts"
            ],
            "extends": [
                "plugin:@typescript-eslint/recommended-type-checked"
            ],
            "rules": {
                "@typescript-eslint/no-floating-promises": ["error", {"ignoreIIFE": true}],
                "@typescript-eslint/no-misused-promises": "off",
                "@typescript-eslint/no-redundant-type-constituents": "error",
                "@typescript-eslint/no-unsafe-argument": "error",
                "@typescript-eslint/no-unsafe-assignment": "error",
                "@typescript-eslint/no-unsafe-call": "off",
                "@typescript-eslint/no-unsafe-enum-comparison": "off",
                "@typescript-eslint/no-unsafe-member-access": "off",
                "@typescript-eslint/no-unsafe-return": "off",
                "@typescript-eslint/require-await": "off",
                "@typescript-eslint/restrict-template-expressions": "off",

                "@typescript-eslint/ban-ts-comment": ["error", {"ts-expect-error": {"descriptionFormat": "^ - .+$"}}],
                "@typescript-eslint/ban-types": ["error", {"types": {"object": true}, "extendDefaults": true}],
                "@typescript-eslint/no-explicit-any": "error",
                "@typescript-eslint/no-shadow": ["error", {"builtinGlobals": false}],
                "@typescript-eslint/no-this-alias": "error",
                "@typescript-eslint/no-unused-vars": ["error", {"vars": "local", "args": "after-used", "argsIgnorePattern": "^_", "caughtErrors": "none"}]
            }
        },
        {
            "files": [
                "*.ts"
            ],
            "rules": {
                "@stylistic/block-spacing": "off",
                "@stylistic/comma-dangle": [
                    "error",
                    {
                        "arrays": "always-multiline",
                        "objects": "always-multiline",
                        "imports": "always-multiline",
                        "exports": "always-multiline",
                        "functions": "always-multiline",
                        "enums": "always-multiline",
                        "generics": "always-multiline",
                        "tuples": "always-multiline"
                    }
                ],
                "@stylistic/indent-binary-ops": "off",
                "@stylistic/no-multiple-empty-lines": ["error", {"max": 1, "maxEOF": 0, "maxBOF": 0}],
                "@stylistic/no-extra-parens": ["error", "all"]
            }
        },
        {
            "files": [
                "*.json"
            ],
            "parser": "jsonc-eslint-parser"
        },
        {
            "files": [
                "ext/data/schemas/options-schema.json"
            ],
            "rules": {
                "@stylistic/no-multi-spaces": "off"
            }
        },
        {
            "files": [
                "test/data/anki-note-builder-test-results.json",
                "test/data/database-test-cases.json",
                "test/data/translator-test-results-note-data1.json",
                "test/data/translator-test-results.json"
            ],
            "rules": {
                "jsonc/indent": ["error", 2]
            }
        },
        {
            "files": [
                "test/data/dictionaries/valid-dictionary1/term_bank_1.json",
                "test/data/dictionaries/valid-dictionary1/term_bank_2.json"
            ],
            "rules": {
                "jsonc/array-element-newline": "off",
                "jsonc/object-property-newline": "off"
            }
        },
        {
            "files": [
                "*.js",
                "*.ts"
            ],
            "rules": {
                "header/header": [
                    "error",
                    "block",
                    {
                        "pattern": " \\* Copyright \\(C\\) (2023-)?2024  Yomitan Authors(\n \\* Copyright \\(C\\) (20(16|17|18|19|20|21)-)?2022  Yomichan Authors)?\n \\*\n \\* This program is free software: you can redistribute it and/or modify\n \\* it under the terms of the GNU General Public License as published by\n \\* the Free Software Foundation, either version 3 of the License, or\n \\* \\(at your option\\) any later version\\.\n \\*\n \\* This program is distributed in the hope that it will be useful,\n \\* but WITHOUT ANY WARRANTY; without even the implied warranty of\n \\* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE\\.  See the\n \\* GNU General Public License for more details\\.\n \\*\n \\* You should have received a copy of the GNU General Public License\n \\* along with this program\\.  If not, see <https://www\\.gnu\\.org/licenses/>\\.\n "
                    }
                ]
            }
        },
        {
            "files": [
                "ext/**/*.js"
            ],
            "rules": {
                "no-console": "error"
            }
        },
        {
            "files": [
                "test/**/*.js",
                "dev/**/*.js",
                "integration.spec.js",
                "playwright.config.js",
                "playwright-util.js",
                "visual.spec.js"
            ],
            "env": {
                "browser": false,
                "node": true,
                "webextensions": false
            }
        },
        {
            "files": [
                "test/data/html/**/*.js"
            ],
            "parserOptions": {
                "sourceType": "script"
            },
            "env": {
                "browser": true,
                "node": false,
                "webextensions": false
            }
        },
        {
            "files": [
                "test/data/html/**/*.js"
            ],
            "excludedFiles": [
                "test/data/html/js/html-test-utilities.js"
            ],
            "globals": {
                "HtmlTestUtilities": "readonly"
            }
        },
        {
            "files": [
                "test/**/*.test.js"
            ],
            "plugins": [
                "vitest"
            ],
            "extends": [
                "plugin:vitest/recommended"
            ],
            "rules": {
                "vitest/prefer-to-be": "off"
            }
        },
        {
            "files": [
                "dev/lib/**/*.js"
            ],
            "extends": [
                "plugin:@typescript-eslint/disable-type-checked"
            ]
        },
        {
            "files": [
                "ext/js/core/api-map.js",
                "ext/js/core/extension-error.js",
                "ext/js/core/json.js",
                "ext/js/data/anki-note-data-creator.js",
                "ext/js/dictionary/dictionary-data-util.js",
                "ext/js/display/pronunciation-generator.js",
                "ext/js/display/structured-content-generator.js",
                "ext/js/dom/css-style-applier.js",
                "ext/js/language/CJK-util.js",
                "ext/js/language/ja/japanese.js",
                "ext/js/language/text-utilities.js",
                "ext/js/templates/anki-template-renderer-content-manager.js",
                "ext/js/templates/anki-template-renderer.js",
                "ext/js/templates/template-renderer-frame-api.js",
                "ext/js/templates/template-renderer-frame-main.js",
                "ext/js/templates/template-renderer-media-provider.js",
                "ext/js/templates/template-renderer.js"
            ],
            "env": {
                "webextensions": false
            }
        },
        {
            "files": [
                "ext/js/core/event-dispatcher.js",
                "ext/js/core/extension-error.js",
                "ext/js/core/json.js",
                "ext/js/core/log.js",
                "ext/js/core/to-error.js",
                "ext/js/core/utilities.js",
                "ext/js/data/database.js",
                "ext/js/dictionary/dictionary-database.js",
                "ext/js/dictionary/dictionary-importer.js",
                "ext/js/dictionary/dictionary-worker-handler.js",
                "ext/js/dictionary/dictionary-worker-main.js",
                "ext/js/dictionary/dictionary-worker-media-loader.js",
                "ext/js/media/media-util.js"
            ],
            "env": {
                "browser": false,
                "worker": true
            }
        },
        {
            "files": [
                "ext/js/accessibility/accessibility-controller.js",
                "ext/js/background/backend.js",
                "ext/js/background/background-main.js",
                "ext/js/background/offscreen-proxy.js",
                "ext/js/background/profile-conditions-util.js",
                "ext/js/background/request-builder.js",
                "ext/js/background/script-manager.js",
                "ext/js/comm/anki-connect.js",
                "ext/js/comm/clipboard-monitor.js",
                "ext/js/comm/clipboard-reader.js",
                "ext/js/comm/mecab.js",
                "ext/js/core/api-map.js",
                "ext/js/core/event-dispatcher.js",
                "ext/js/core/event-listener-collection.js",
                "ext/js/core/extension-error.js",
                "ext/js/core/fetch-utilities.js",
                "ext/js/core/json.js",
                "ext/js/core/log-utilities.js",
                "ext/js/core/log.js",
                "ext/js/core/object-utilities.js",
                "ext/js/core/to-error.js",
                "ext/js/core/utilities.js",
                "ext/js/data/anki-util.js",
                "ext/js/data/array-buffer-util.js",
                "ext/js/data/database.js",
                "ext/js/data/json-schema.js",
                "ext/js/data/options-util.js",
                "ext/js/data/permissions-util.js",
                "ext/js/dictionary/dictionary-database.js",
                "ext/js/dom/native-simple-dom-parser.js",
                "ext/js/dom/simple-dom-parser.js",
                "ext/js/extension/environment.js",
                "ext/js/extension/web-extension.js",
                "ext/js/general/cache-map.js",
                "ext/js/general/object-property-accessor.js",
                "ext/js/general/regex-util.js",
                "ext/js/language/ar/arabic-text-preprocessors.js",
                "ext/js/language/CJK-util.js",
                "ext/js/language/de/german-text-preprocessors.js",
                "ext/js/language/de/german-transforms.js",
                "ext/js/language/en/english-transforms.js",
                "ext/js/language/es/spanish-transforms.js",
                "ext/js/language/ja/japanese-text-preprocessors.js",
                "ext/js/language/ja/japanese-transforms.js",
                "ext/js/language/ja/japanese-wanakana.js",
                "ext/js/language/ja/japanese.js",
                "ext/js/language/ko/korean-text-processors.js",
                "ext/js/language/ko/korean-transforms.js",
                "ext/js/language/la/latin-transforms.js",
                "ext/js/language/language-descriptors.js",
                "ext/js/language/language-transformer.js",
                "ext/js/language/language-transforms.js",
                "ext/js/language/languages.js",
                "ext/js/language/multi-language-transformer.js",
                "ext/js/language/ru/russian-text-preprocessors.js",
                "ext/js/language/sga/old-irish-transforms.js",
                "ext/js/language/sq/albanian-transforms.js",
                "ext/js/language/text-processors.js",
                "ext/js/language/translator.js",
                "ext/js/language/zh/chinese.js",
                "ext/js/media/audio-downloader.js",
                "ext/js/media/media-util.js",
                "ext/js/templates/template-patcher.js"
            ],
            "env": {
                "browser": false,
                "serviceworker": true
            },
            "globals": {
                "FileReader": "readonly",
                "Intl": "readonly",
                "crypto": "readonly",
                "AbortController": "readonly"
            }
        }
    ]
}