forked from OpenQDev/OpenQ-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
executable file
·53 lines (53 loc) · 915 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
43
44
45
46
47
48
49
50
51
52
53
{
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"node": true,
"es2021": true,
"jest": true
},
"extends": [
"plugin:@next/next/recommended",
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"ecmaFeatures": {
"jsx": true
},
"babelOptions": {
"presets": [
"@babel/preset-react"
]
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"unused-imports",
"prettier"
],
"rules": {
"no-async-promise-executor": "off",
"no-inner-declarations": "off",
"no-useless-catch": "off",
"no-useless-escape": "off",
"react/no-unescaped-entities": "off",
"react/prop-types": 0,
"linebreak-style": 0,
"no-loss-of-precision": "off",
"semi": [
"error",
"always"
],
"prettier/prettier": "error"
}
}