-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.json
50 lines (50 loc) · 1.16 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
41
42
43
44
45
46
47
48
49
50
{
"env": {
"browser": true,
"es6": true
},
"extends": [
"react-app"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/explicit-function-return-type": [
0,
{
"allowTypedFunctionExpressions": true
}
],
"no-redeclare": "off",
"@typescript-eslint/no-redeclare": "off",
"indent": "off",
"@typescript-eslint/indent": "off",
"quotes": [
"error",
"single"
],
"semi": ["error", "always", { "omitLastInOneLineBlock": true}],
"no-use-before-define": [
0,
{
"functions": false,
"classes": false,
"variables": false
}
]
}
}