forked from sodapng/voice-over-translation
-
Notifications
You must be signed in to change notification settings - Fork 233
/
eslint.config.js
48 lines (47 loc) · 1.29 KB
/
eslint.config.js
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
import js from "@eslint/js";
import globals from "globals";
import oxlint from "eslint-plugin-oxlint";
// import github from "eslint-plugin-github";
export default [
{
ignores: ["dist/*"],
},
js.configs.recommended,
{
// plugins: {
// github: github,
// },
rules: {
"no-control-regex": 0,
"no-async-promise-executor": 0,
// return after update github eslint plugin to full support eslint 9
// "github/no-innerText": "error",
// "github/no-inner-html": "error",
// "github/no-useless-passive": "error",
// "github/prefer-observers": "error",
// "github/require-passive-events": "error",
},
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
globals: {
...globals.browser,
...globals.node,
...globals.greasemonkey,
// IMPORTED SCRIPTS
protobuf: "readonly",
Hls: "readonly",
anime: "readonly",
Tone: "readonly",
// WEBPACK ENVIRONMENT
DEBUG_MODE: "readonly",
AVAILABLE_LOCALES: "readonly",
IS_BETA_VERSION: "readonly",
__MK_GLOBAL__: "readonly",
// YOUTUBE PAGE API
ytplayer: "readonly",
},
},
},
oxlint.configs["flat/recommended"], // oxlint should be the last one
];