Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 5fd59fb

Browse files
Update dependencies
* Update dependencies
1 parent e446e1e commit 5fd59fb

4 files changed

Lines changed: 2133 additions & 3555 deletions

File tree

.eslintrc.cjs

Lines changed: 0 additions & 35 deletions
This file was deleted.

eslint.config.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import eslint from "@eslint/js";
2+
import prettier_config from "eslint-config-prettier";
3+
import tseslint from "typescript-eslint";
4+
import react from "eslint-plugin-react";
5+
import globals from "globals";
6+
7+
export default tseslint.config(
8+
eslint.configs.recommended,
9+
...tseslint.configs.recommended,
10+
prettier_config,
11+
{
12+
files: ["**/*.{ts,tsx}"],
13+
plugins: { react },
14+
languageOptions: {
15+
ecmaVersion: "latest",
16+
globals: {
17+
...globals.browser
18+
},
19+
},
20+
rules: {
21+
"@typescript-eslint/no-unused-vars": [
22+
"error",
23+
{
24+
argsIgnorePattern: "^_",
25+
}
26+
]
27+
}
28+
}
29+
);

0 commit comments

Comments
 (0)