-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
73 lines (73 loc) · 1.67 KB
/
.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
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
73
{
"extends": [
"airbnb-base",
"prettier",
"plugin:@wordpress/eslint-plugin/recommended",
"plugin:vue/essential"
],
"plugins": [
"import",
"prettier",
"vue"
],
"env": {
"browser": true
},
"parserOptions": {
"sourceType": "module",
"parser": "babel-eslint"
},
"rules": {
"import/extensions": "off",
"import/no-unresolved": "off",
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"printWidth": 120,
"singleQuote": true,
"useTabs": true,
"tabWidth": 4
}
]
},
"globals": {
"wptbAdminSettingsData": true,
"wptbImportMenuData": true,
"WPTB_TableStateSaveManager": true,
"WPTB_ControlsManager": true,
"WPTB_Helper": true,
"WPTB_ResponsiveFrontend": true,
"WPTB_StylePass": true,
"jQuery": true,
"wp": true,
"wptbGenerateMenuData": true,
"wptbGenerateMenuProData": true,
"WPTB_Table": true,
"wptbBlockData": true,
"WptbFrontendData": true,
"WPTB_NotificationManager": true,
"WPTB_Logger": true,
"WPTB_Store": true,
"WPTB_BackgroundMenu": true,
"WPTB_IconManager": true,
"wptb_admin_object": true,
"WPTB_ExtraStyles": true,
"WPTB_SortableTable": true,
"WPTB_LazyLoad": true,
"WPTB_ScrollManager": true,
"WPTB_Parser": true,
"WPTB_Settings": true,
"ElementCounters": true,
"MultipleSelect": true,
"wptbPluginsWin": true,
"CellObject": true,
"TableObject": true,
"HTMLTableDataCellElement": true,
"ElementSubscriber": true,
"ProxyArray": true,
"tinyMCE": true,
"elementId": true,
"wptbResponsiveFrontendInstance": true
}
}