forked from simon-weber/Autoplaylists-for-Google-Music
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
48 lines (48 loc) · 1.24 KB
/
.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
38
39
40
41
42
43
44
45
46
47
48
{
"extends": "airbnb",
"globals": {
"chrome": true,
"$": true,
"__DEVELOPMENT__": true,
"require": true,
"exports": true,
"Set": true
},
"env": {
"browser": true,
"node": false,
"es6": true
},
parserOptions: {
sourceType: "script"
},
"rules": {
"no-console": 0,
"strict": [2, "global"],
"guard-for-in": 0,
"no-eval": 0,
"object-curly-spacing": 0,
"max-len": [2, 140, 4, {"ignoreComments": true}],
"no-alert": 0,
"no-use-before-define": [2, "nofunc"],
"no-restricted-syntax": [
2,
"DebuggerStatement",
"LabeledStatement",
"WithStatement",
],
"no-underscore-dangle": 0,
"prefer-rest-params": 0,
"consistent-return": 0,
"newline-per-chained-call": 0,
"no-continue": 0,
"prefer-template": 0,
"quote-props": 0,
"indent": [2, 2, {"MemberExpression": 0}],
"arrow-parens": [2, "as-needed", {"requireForBlockBody": false}],
"no-plusplus": 0,
"prefer-destructuring": 0,
"object-curly-newline": 0,
"no-multi-spaces": [2, {ignoreEOLComments: true}]
}
}