-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
50 lines (44 loc) · 1.23 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
{
"root": true,
"env": { "browser": true },
"parserOptions": { "project": "./tsconfig.json" },
"extends": [
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:testing-library/recommended",
"plugin:testing-library/react",
"prettier",
"prettier/@typescript-eslint",
"prettier/react"
],
"plugins": ["simple-import-sort"],
"rules": {
// Auto-sort imports
"sort-imports": "off",
"import/order": "off",
"simple-import-sort/sort": "error",
// Using a type system makes it safe enough to spread props
"react/jsx-props-no-spreading": "off",
// Explicit return types
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true
}
],
// Remove braces when possible
"arrow-body-style": ["error"],
// More lenient rules
"@typescript-eslint/no-unused-vars": "off",
"import/prefer-default-export": "off",
"no-bitwise": "off",
"no-continue": "off",
"no-nested-ternary": "off",
"no-plusplus": "off",
// Allow array index in keys
"react/no-array-index-key": "off"
}
}