forked from EdgeApp/edge-reports-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
32 lines (32 loc) · 834 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
{
"extends": [
"standard-kit/prettier",
"standard-kit/prettier/jsx",
"standard-kit/prettier/node",
"standard-kit/prettier/react",
"standard-kit/prettier/typescript"
],
"globals": {
"fetch": true
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-throw-literal": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/switch-exhaustiveness-check": "error"
}
}
],
"parserOptions": {
"project": "tsconfig.json"
},
"plugins": ["simple-import-sort"],
"rules": {
"simple-import-sort/imports": "error"
}
}