-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
90 lines (90 loc) · 1.97 KB
/
.eslintrc
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"root": true,
"plugins": [
"react-hooks"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"allowImportExportEverywhere": true,
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"globals": {
"__webpack_hash__": true,
"globalThis": "readonly",
"React": true,
"JSX": true,
"RequestInit": true
},
"rules": {
"no-console": 0,
"no-debugger": 0,
"typescript/no-type-alias": 0,
"interface-over-type-literal": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/ban-ts-comment": "off",
"camelcase": [
"warn",
{
"allow": [
"__REDUX_DEVTOOLS_EXTENSION_COMPOSE__",
"__webpack_hash__"
]
}
],
"prettier/prettier": ["error", {
"endOfLine":"auto"
}],
"@typescript-eslint/prefer-interface": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/ban-types": [
"error",
{
"extendDefaults": true,
"types": {
"{}": false
}
}
],
"no-alert": "error",
"no-empty-function": "off",
"require-await": "warn",
"no-duplicate-imports": "warn",
"no-dupe-class-members": "warn",
"no-multiple-empty-lines": "warn",
"no-unused-vars": 0,
"react/jsx-uses-vars": "error",
"react/no-unescaped-entities": 0,
"no-undef": "error",
"react/prop-types": 0,
"react/display-name": 0
},
"settings": {
"react": {
"version": "detect"
}
}
}