-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
36 lines (36 loc) · 929 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
33
34
35
36
{
"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",
"import/prefer-default-export": "off",
"import/no-default-export": "warn",
// Using a type system makes it safe enough to spread props
"react/jsx-props-no-spreading": "off",
"react/jsx-filename-extension": [
1,
{ "extensions": [".js", ".jsx", ".ts", ".tsx"] }
]
}
}