-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
30 lines (30 loc) · 760 Bytes
/
Copy path.eslintrc
File metadata and controls
30 lines (30 loc) · 760 Bytes
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
{
"extends": ["airbnb-base", "plugin:lodash-fp/recommended"],
"parser": "babel-eslint",
"env": {
"node": true
},
"rules": {
"no-underscore-dangle": "off",
"arrow-parens": "off",
"no-confusing-arrow": ["error", {"allowParens": true}],
"object-curly-spacing": ["off"],
"consistent-return": "off",
"comma-dangle": "off",
"generator-star-spacing": "off",
"import/no-unresolved": ["error"],
"import/no-extraneous-dependencies": "error",
"no-console": 0,
"no-use-before-define": "off",
"valid-jsdoc": "error",
"promise/param-names": 2,
"promise/always-return": 2,
"promise/catch-or-return": 2,
"promise/no-native": 0
},
"plugins": [
"import",
"promise",
"lodash-fp"
]
}