Skip to content

Commit 97834c0

Browse files
committed
update dependencies
1 parent 4b61ee5 commit 97834c0

File tree

3 files changed

+5242
-7390
lines changed

3 files changed

+5242
-7390
lines changed

eslint.config.mjs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import globals from "globals";
2+
3+
export default [{
4+
languageOptions: {
5+
globals: {
6+
...globals.browser,
7+
...globals.node,
8+
Atomics: "readonly",
9+
SharedArrayBuffer: "readonly",
10+
},
11+
},
12+
13+
rules: {
14+
"no-unused-vars": ["warn", {
15+
argsIgnorePattern: "^_",
16+
varsIgnorePattern: "^_",
17+
}],
18+
},
19+
}];

0 commit comments

Comments
 (0)