-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
40 lines (37 loc) · 1.33 KB
/
.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
{
/* Enviroment */
// https://eslint.org/docs/latest/user-guide/configuring/language-options#specifying-environments
"env": {
"browser": true,
"node": true
},
/* Extends */
// implement the entire plugins
"extends": [
"next/core-web-vitals",
"eslint:recommended", // eslint
"plugin:react/recommended", // eslint-plugin-react
"plugin:react-hooks/recommended", // eslint-plugin-react-hooks
"plugin:@typescript-eslint/recommended", // @typescript-eslint/eslint-plugin
"plugin:@next/next/recommended", // eslint-config-next
"plugin:import/recommended" // eslint-plugin-import
],
/* Parser */
// Allow Eslint lint typescript code
"parser": "@typescript-eslint/parser", // installed with @typescript-eslint/eslint-plugin
/* Plugins */
// Only use "plugins" with customize rules (reference: https://www.npmjs.com/package/eslint-plugin-react-hooks)
"plugins": [],
/* Rules */
"rules": {
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"react-hooks/exhaustive-deps": "error",
"@typescript-eslint/ban-types": "error",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@next/next/no-img-element": "off"
}
}