forked from 10up/classifai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
60 lines (60 loc) · 1.46 KB
/
.eslintrc.json
File metadata and controls
60 lines (60 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
{
"globals": {
"wp": "readonly",
"jQuery": "readonly",
"describe": "readonly",
"before": "readonly",
"beforeEach": "readonly",
"expect": "readonly",
"it": "readonly",
"Cypress": "readonly",
"cy": "readonly",
"ajaxurl": "readonly",
"FormData": "readonly",
"classifaiMediaVars": "readonly",
"classifaiTextToSpeechData": "readonly",
"wpApiSettings": "readonly",
"classifaiDalleData": "readonly",
"Backbone": "readonly",
"_": "readonly",
"File": "readonly",
"Headers": "readonly",
"requestAnimationFrame": "readonly",
"React": "readonly",
"Block": "readonly",
"classifai_term_cleanup_params": "readonly",
"classifAISettings": "readonly",
"classifaiRecommendedContentSettings": "readonly"
},
"rules": {
"react/jsx-no-undef": "off"
},
"settings": {
"import/core-modules": [
"@wordpress/api-fetch",
"@wordpress/block-editor",
"@wordpress/block-library",
"@wordpress/commands",
"@wordpress/components",
"@wordpress/compose",
"@wordpress/core-data",
"@wordpress/data",
"@wordpress/dom-ready",
"@wordpress/dom",
"@wordpress/editor",
"@wordpress/element",
"@wordpress/hooks",
"@wordpress/html-entities",
"@wordpress/i18n",
"@wordpress/media-utils",
"@wordpress/notices",
"@wordpress/plugins",
"@wordpress/url",
"@wordpress/wordcount",
"react-dom",
"react"
]
},
"extends": ["plugin:@wordpress/eslint-plugin/recommended"],
"ignorePatterns": ["*.json", "webpack.config.js"]
}