-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
34 lines (34 loc) · 829 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
{
"rules": {
"quotes": ["error", "single", { "allowTemplateLiterals": true }],
"no-return-await": "off",
"object-curly-newline": ["error", { "consistent": true }],
"function-paren-newline": ["error", "multiline-arguments"],
"arrow-parens": ["error", "as-needed"],
"no-console": 0,
"no-underscore-dangle": 0,
"no-unused-vars": "off",
"no-use-before-define": ["error", {
"variables": false
}],
"no-multi-str": 0,
"comma-dangle": "off",
"no-param-reassign": "off",
"linebreak-style": "off",
"indent":"off",
"max-len": ["error", 120],
"implicit-arrow-linebreak": "off"
},
"env": {
"node": true,
"mocha": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"extends": [
"airbnb-base"
]
}