-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
36 lines (36 loc) · 850 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
{
"node": true,
"esversion": 6,
"extends": ["airbnb-base", "prettier"],
"rules": {
"camelcase": 0,
"max-len": [1, 120, 2, {"ignoreComments": true}],
"eqeqeq": 1,
"arrow-body-style": 0,
"no-underscore-dangle": 0,
"global-require": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"consistent-return": 0,
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}],
"no-unused-expressions": ["error", {
"allowTernary": true
}],
"no-restricted-properties": 0,
"no-bitwise": 0,
"no-loop-func": 0,
"linebreak-style": 0
},
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"mocha": true
}
}