Skip to content

Commit 8da9d81

Browse files
authored
Miscellaneous cleanup (onyx-dot-app#4516)
* stricter typing * k
1 parent 047ca2d commit 8da9d81

File tree

126 files changed

+353
-376
lines changed

Some content is hidden

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

126 files changed

+353
-376
lines changed

web/.eslintrc.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"extends": "next/core-web-vitals",
3+
"plugins": ["unused-imports"],
34
"rules": {
4-
"@next/next/no-img-element": "off"
5+
"@next/next/no-img-element": "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+
]
520
}
621
}

0 commit comments

Comments
 (0)