forked from dominic-p/videojs-resolution-selector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
41 lines (41 loc) · 812 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
38
39
40
41
{
"rules": {
"quotes": [2, "single"],
"no-unused-vars": [2, {"vars": "all", "args": "none"}],
"consistent-this": [2, "self"],
"no-use-before-define": [2, "nofunc"],
"consistent-return": 0,
"camelcase": 0,
"no-underscore-dangle": 0,
"new-cap": 0,
"no-new": 0,
"global-strict": 0,
"strict": [2, "global"]
},
"globals": {
"$": true,
"_": true,
"after": true,
"analytics": true,
"AWS": true,
"angular": true,
"Backbone": true,
"before": true,
"braintree": true,
"define": true,
"describe": true,
"dust": true,
"it": true,
"mixpanel": true,
"moment": true,
"MP": true,
"require": true,
"rind": true,
"Vault": true,
"vent": true
},
"env":{
"browser": true,
"node": true
}
}