-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc
58 lines (58 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
{
"rules": {
"indent": "off",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-console": "off",
"no-redeclare": "warn",
"no-unused-vars": "warn",
"no-useless-escape": "warn",
"no-inner-declarations": "warn",
"no-cond-assign": "warn",
"no-extra-boolean-cast": "warn",
"no-prototype-builtins": "warn",
"no-mixed-spaces-and-tabs": "warn"
},
"extends": "eslint:recommended",
"env": {
"node": true,
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true
},
"globals": {
"wp": true,
"ajaxurl": true,
"tinyMCE": true,
"flowplayer": true,
"fv_player": true,
"fv_player_pro": true,
"fv_player_editor_pro": true,
"FV_Flowplayer_Pro": true,
"fv_flowplayer_conf": true,
"fv_player_editor": true,
"fv_player_editor_conf": true,
"fv_player_editor_conf_screenshots": true,
"fv_player_editor_translations": true,
"fv_flowplayer_translations": true,
"fv_flowplayer_playlists": true,
"fv_player_wizard_base": true,
"fv_player_bunny_stream_upload_settings": true,
"fv_flowplayer_insertUpdateOrDeleteVideoMeta": true,
"fv_flowplayer_media_browser_add_tab": true,
"fv_flowplayer_browser_add_load_more_button": true,
"fv_flowplayer_browser_browse": true,
"fv_player_media_browser": true,
"fv_wp_flowplayer_submit": true,
"fv_wp_flowplayer_dialog_resize": true,
"fv_player_lightbox": true,
"fv_player_clipboard": true,
"fv_player_get_video_link_hash": true,
"fv_player_time_hms_ms": true,
"fv_player_time_hms": true,
"fv_player_notice": true,
"fv_autoplay_exec": true,
"fv_player_load": true,
"renderBrowserPlaceholderHTML" : true
}
}