-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
47 lines (47 loc) · 1.13 KB
/
.eslintrc.json
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
46
47
{
"extends": "airbnb",
"rules": {
"computed-property-spacing": 0,
"no-multi-spaces": 0,
"template-curly-spacing": 0,
"no-prototype-builtins": 0,
"no-console": 0,
"no-multiple-empty-lines": [2, {"max": 1}],
"prefer-template": 0,
"no-shadow": 0,
"semi-style": 0,
"no-plusplus": 0,
"no-use-before-define": [2, "nofunc"],
"no-mixed-operators": 0,
"indent": [2, 2, { "SwitchCase": 1 }],
"prefer-destructuring": 0,
"space-in-parens": 0,
"space-before-function-paren": 0,
"no-unused-expressions": 0,
"no-unused-vars": [2, { "args": "none" }],
"function-paren-newline": 0,
"semi": 2,
"max-len": 0,
"comma-dangle": [2, "always-multiline"],
"no-param-reassign": 0,
"arrow-parens": [2, "as-needed"],
"padded-blocks": 0,
"func-names": 0,
"arrow-body-style": 0,
"import/no-extraneous-dependencies": [
"error",{
"devDependencies": true
}]
},
"globals":{
"describe": true,
"it": true,
"expect": true,
"app": true,
"request": true,
"beforeEach": true,
"td": true,
"Joi": true,
"joiAssert": true
}
}