forked from ritz078/embed-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
72 lines (65 loc) · 1.46 KB
/
Copy path.eslintrc
File metadata and controls
72 lines (65 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"env": {
"node": true,
"es6": true,
"browser":true
},
"parser": "babel-eslint",
"extends": "eslint:recommended",
"rules": {
"no-multi-spaces": 0,
"key-spacing": 0,
"no-return-assign": 0,
"consistent-return": 0,
"no-shadow": 0,
"comma-dangle": 0,
"no-use-before-define": 0,
"no-empty": 0,
"new-parens": 0,
"no-cond-assign": 0,
"no-fallthrough": 0,
"new-cap": 0,
"no-loop-func": 0,
"no-unreachable": 0,
"no-labels": 0,
"no-process-exit": 0,
"camelcase": 0,
"no-console": 0
},
"globals":{
"hljs":true,
"twttr":true,
"fetchJsonp":true,
"videojs":true,
"marked":true,
"EMOJI" : true,
"LINK" : true,
"TWITTER" : true,
"SMILEY" : true,
"HIGHLIGHTCODE" : true,
"MARKDOWN" : true,
"MAP" : true,
"YOUTUBE" : true,
"VIMEO" : true,
"TED" : true,
"DAILYMOTION" : true,
"USTREAM" : true,
"LIVELEAK" : true,
"VINE" : true,
"YOUTUBE" : true,
"BASICVIDEO" : true,
"SPOTIFY" : true,
"SOUNDCLOUD" : true,
"BASICAUDIO" : true,
"CODEPEN" : true,
"IDEONE" : true,
"JSBIN" : true,
"JSFIDDLE" : true,
"PLUNKER" : true,
"GIST" : true,
"FLICKR" : true,
"BASICIMAGE" : true,
"INSTAGRAM" : true,
"ejs":true
}
}