-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
35 lines (35 loc) · 858 Bytes
/
.eslintrc.js
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
module.exports = {
parser: "@typescript-eslint/parser",
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
'plugin:@next/next/recommended',
],
plugins: [
"@typescript-eslint",
"react",
"prettier"
],
rules: {
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"react/no-unescaped-entities": "off",
"prettier/prettier": "off",
"@next/next/no-page-custom-font": "off",
"prefer-const": "off",
"no-var" : "off",
"@typescript-eslint/no-var-requires" : "off",
"@typescript-eslint/no-inferrable-types" : "off",
"@typescript-eslint/no-unused-vars" : "off",
"@typescript-eslint/no-explicit-any" : "off",
},
globals: {
React: "writable"
},
settings: {
react: {
version: "detect"
}
}
};