Skip to content

Commit b1e9fa0

Browse files
committed
update dependencies
1 parent fd332fa commit b1e9fa0

File tree

3 files changed

+2996
-4276
lines changed

3 files changed

+2996
-4276
lines changed

eslint.config.mjs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import typescriptEslint from "@typescript-eslint/eslint-plugin";
2+
import globals from "globals";
3+
import tsParser from "@typescript-eslint/parser";
4+
5+
export default [{
6+
plugins: {
7+
"@typescript-eslint": typescriptEslint,
8+
},
9+
10+
languageOptions: {
11+
globals: {
12+
...globals.browser,
13+
...globals.node,
14+
Atomics: "readonly",
15+
SharedArrayBuffer: "readonly",
16+
},
17+
18+
parser: tsParser,
19+
},
20+
21+
rules: {
22+
"no-unused-vars": ["warn", {
23+
argsIgnorePattern: "^_",
24+
varsIgnorePattern: "^_",
25+
}],
26+
},
27+
}];

0 commit comments

Comments
 (0)