-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
31 lines (31 loc) · 936 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
{
"env": {
"browser": true
},
"extends": ["plugin:react/recommended", "prettier"],
"settings": {
"react": {
"version": "detect"
}
},
"overrides": [],
"parserOptions": {
"project": ["./tsconfig.json"],
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "prettier"],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/method-signature-style": "off",
"@typescript-eslint/promise-function-async": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/no-unused-vars": "warn",
"prefer-promise-reject-errors": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"no-extra-boolean-cast": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/array-type": "off",
"@typescript-eslint/restrict-template-expressions": "off"
}
}