forked from teogenesmoura/spreadsheetsGoogle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
52 lines (52 loc) · 1.02 KB
/
.eslintrc.js
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
48
49
50
51
52
module.exports = {
"env": {
"node": true,
"browser": false,
"commonjs": true,
"jest": true,
"es6": true
},
"extends": [
"eslint:recommended",
"airbnb-base"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017,
},
"rules": {
"no-console": "off",
"indent": [
"error",
"tab"
],
"no-tabs": 0,
"prefer-destructuring": 0,
"no-param-reassign": 0,
"no-use-before-define": 0,
"object-shorthand": 0,
"arrow-body-style": [
1,
"always"
],
"space-before-function-paren": [
2,
{
"anonymous": "always",
"named": "never"
}
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
};