-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
51 lines (48 loc) · 1.06 KB
/
.eslintrc
File metadata and controls
51 lines (48 loc) · 1.06 KB
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
{
"extends": "airbnb-base/legacy",
"parserOptions": {
"sourceType": "strict"
},
"rules": {
"camelcase": 0,
"vars-on-top": 0,
"global-require": 0,
"no-underscore-dangle": 0,
"default-case": 0,
"one-var": 0,
"no-unused-vars": [ 2, { "args": "none" } ],
"no-alert": 0,
"no-cond-assign": 0,
"quote-props": 0,
"no-nested-ternary": 0,
"no-use-before-define": [2, { "functions": false, "classes": true }],
"consistent-return": 0,
"no-eval": 0,
"prefer-arrow-callback": 0,
"array-bracket-spacing": 0,
"no-console": 0,
"indent": [ 2, 2, { "SwitchCase": 1 }],
"max-len": 0,
"comma-dangle": 0,
"no-param-reassign": 0,
"prefer-template": 0,
"curly": 0,
"func-names": 0,
"no-shadow": 0,
"spaced-comment": 0,
"strict": [ 2, "global" ]
},
globals: {
"$": true,
"_": true,
"ENV": true,
"google": true,
"INITIAL_STATE": true,
"INITIAL_CONTEXT": true,
"LOGIN_USER": true,
"LANG": true,
"PWD": true,
"FB": true,
"Backbone": true
}
}