forked from alexandr-g/cra-template-typescript-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
32 lines (32 loc) · 743 Bytes
/
.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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"plugin:prettier/recommended",
"airbnb-typescript",
"prettier",
"prettier/@typescript-eslint",
"prettier/react"
],
"env": {
"jest": true
},
"rules": {
// Make prettier code formatting suggestions more verbose.
"prettier/prettier": ["warn"],
// Disable <Fragment> => <> replacement. Feel free to change
"react/jsx-fragments": "off",
// Disable prefer default export
"import/prefer-default-export": "off"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parserOptions": {
"ecmaVersion": 12,
"project": ["./tsconfig.json"]
}
}
]
}