-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
33 lines (33 loc) · 1.05 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
{
"env": {
"node": true
},
"extends": "airbnb-base",
"rules": {
"comma-dangle": "off",
"padded-blocks": "off",
"no-trailing-spaces": "off",
"no-multi-spaces": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"no-confusing-arrow": "off",
"max-len": ["error", { "code": 100, "ignoreComments": true, "ignoreStrings": true, "ignoreTemplateLiterals": true }],
"no-use-before-define": "off",
"brace-style": ["error", "stroustrup", { "allowSingleLine": true }],
"object-curly-newline": "off",
"prefer-promise-reject-errors": "off",
"no-nested-ternary": "off",
"prefer-arrow-callback": "off",
"key-spacing": ["error", { "align": { "beforeColon": true, "afterColon": true, "on": "colon", "mode": "minimum" } }],
"no-plusplus": "off"
},
"globals": {
"_dataModeler": false,
"_firebaseAdmin": false,
"_pathReplacers": false,
"_cache": false,
"_models": false,
"_functions": false,
"_filters": false
}
}