-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.json
42 lines (42 loc) · 938 Bytes
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"plugins": ["@typescript-eslint", "unused-imports"],
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{ "ignoreRestSiblings": true }
],
"unused-imports/no-unused-imports": "error",
"@next/next/no-img-element": "off",
"@typescript-eslint/ban-ts-comment": "off",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
],
"import/order": [
"error",
{
"groups": [
"index",
"sibling",
"parent",
"internal",
"external",
"builtin",
"object",
"type"
]
}
],
"@typescript-eslint/no-explicit-any": "off"
}
}