-
Notifications
You must be signed in to change notification settings - Fork 13
/
.eslintrc
36 lines (36 loc) · 870 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
{
"extends": "airbnb/base",
"parser": "babel-eslint",
"env": {
"node": true,
"jasmine": true
},
"rules": {
"indent": ["error", 2, {
"SwitchCase": 1,
"VariableDeclarator": 1,
"FunctionDeclaration": {
"parameters": 1,
"body": 1
},
"FunctionExpression": {
"parameters": 1,
"body": 1
},
"MemberExpression": "off"
}],
"no-param-reassign": ["error", { "props": false }],
"newline-per-chained-call": "off",
"no-plusplus": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}],
"arrow-parens": ["error", "as-needed"],
"function-paren-newline": "off",
"prefer-destructuring": "off",
}
}