-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
32 lines (32 loc) · 981 Bytes
/
.eslintrc.json
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
{
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-prototype-builtins": 0,
"no-unused-vars": 1,
"no-undef": 1
},
"globals": {
"wpulivesearch_options": true,
"wpulivesearch_settings": true,
"wpulivesearch_datas_keys": true,
"wpulivesearch_clean_item_data": true,
"wpulivesearch_delete_result": true,
"wpulivesearch_filters": true,
"wpulivesearch_datas": true,
"wpulivesearch_before_filter_insertion": true,
"wpulivesearch_get_filled_template__before_items": true,
"wpulivesearch_get_filled_template__before_item": true,
"wpulivesearch_get_filled_template__after_item": true,
"wpulivesearch_get_filled_template__after_items": true,
"wpulivesearch_tpl": true,
"wp": true,
"jQuery": true
}
}