-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
37 lines (36 loc) · 813 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
37
// {
// "extends": ["plugin:prettier/recommended"]
// }
{
"env": {
"node": true,
"commonjs": true,
"es6": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"object-curly-newline": [0, "always"],
"comma-dangle": ["error", {
"arrays": "always-multiline",
"exports": "always-multiline",
"functions": "never",
"imports": "always-multiline",
"objects": "always-multiline"
}],
"linebreak-style": ["error", "unix"],
"max-len": ["error", { "code": 120 }],
"no-param-reassign": [0, "always"],
"no-underscore-dangle": [0, "always"],
"indent": ["error", 2],
"quotes": ["error", "single"]
}
}