-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
30 lines (30 loc) · 929 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
{
"extends": "next/core-web-vitals",
"plugins": ["prettier", "@typescript-eslint", "unused-imports"],
"rules": {
"@next/next/no-html-link-for-pages": "off",
"react/jsx-key": "off",
"eqeqeq": "error",
"no-console": "warn",
"no-undef": "off",
"no-unused-vars": "off",
"prettier/prettier": "error",
"import/no-anonymous-default-export": "off",
"react/no-unescaped-entities": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "warn",
"unused-imports/no-unused-imports": "warn"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"ignorePatterns": ["node_modules", "build", "dist", "public"]
}