forked from oblador/loki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (32 loc) · 814 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
{
"extends": [
"airbnb",
"prettier",
"prettier/react",
"plugin:jest/recommended"
],
"plugins": [
"jest",
"prettier"
],
"parser": "babel-eslint",
"env": {
"jest/globals": true,
},
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/prop-types": [0],
"react/destructuring-assignment": [0],
"react/jsx-fragments": [0],
"import/extensions": [2, { "js": "never", "json": "always" }],
"import/no-extraneous-dependencies": [0],
"import/no-unresolved": [2, { ignore: ['^react(-native)?$'] }],
"no-plusplus": [0],
"no-await-in-loop": [0],
"func-names": [0],
"prefer-object-spread": [0],
"max-classes-per-file": [0],
"no-async-promise-executor": [0],
"prettier/prettier": "error"
}
}