forked from loopstudio/react-app-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
38 lines (38 loc) · 919 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
33
34
35
36
37
38
{
"env": {
"es2020": true,
"jest": true,
"browser": true,
"commonjs": true,
"serviceworker": true
},
"extends": [
"airbnb",
"react-app",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jest-dom/recommended",
"plugin:testing-library/react",
"plugin:prettier/recommended",
"prettier/react"
],
"settings": {
"import/ignore": ["/testUtils"],
"import/resolver": {
"node": {
"moduleDirectory": ["node_modules", "src/"]
}
}
},
"parser": "babel-eslint",
"rules": {
"no-console": "warn",
"import/no-cycle": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"import/prefer-default-export": "off",
"react/forbid-prop-types": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-filename-extension": "off",
"prefer-promise-reject-errors": "off"
}
}