-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (45 loc) · 1.19 KB
/
.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
39
40
41
42
43
44
45
{
"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"
],
"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",
"no-unused-vars": "warn",
"react/react-in-jsx-scope": "off",
"react/function-component-definition": "off",
"import/no-unresolved": "off",
"no-restricted-exports": "off",
"consistent-return": "off",
"no-param-reassign": "off",
"dot-notation": "off",
"react/jsx-no-constructed-context-values": "off",
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
}