Skip to content

Commit 5b2d433

Browse files
committed
delete unused imports
1 parent 76a10fd commit 5b2d433

File tree

123 files changed

+164
-378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+164
-378
lines changed

web/.eslintrc.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
{
22
"extends": "next/core-web-vitals",
3+
"plugins": ["unused-imports"],
34
"rules": {
45
"@next/next/no-img-element": "off",
5-
"react-hooks/exhaustive-deps": "off"
6+
"react-hooks/exhaustive-deps": "off",
7+
"no-unused-vars": "off",
8+
"@typescript-eslint/no-unused-vars": "off",
9+
"unused-imports/no-unused-imports": "warn",
10+
"unused-imports/no-unused-vars": [
11+
"warn",
12+
{
13+
"vars": "all",
14+
"varsIgnorePattern": "^_",
15+
"args": "after-used",
16+
"argsIgnorePattern": "^_",
17+
"ignoreRestSiblings": true
18+
}
19+
]
620
}
721
}

0 commit comments

Comments
 (0)