-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
39 lines (39 loc) · 1.08 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
{
"root": true,
"extends": "standard",
"rules": {
"semi": "off",
"indent": "off",
"comma-dangle": "off",
"operator-linebreak": "off",
"space-before-function-paren": "off",
"space-infix-ops": "off",
"no-return-await": "off",
"quotes": [2, "single", { "avoidEscape": true }]
},
"env": {
"browser": true,
"es2021": true,
"node": true
},
"globals": {
"grecaptcha": "writable",
"helper": "writable",
"helperForm": "writable",
"helperFilter": "writable",
"Prism": "writable",
"searchAPI": "writable",
"autocomplete": "writable",
"supportsPassive": "writable",
"$clamp": "writable",
"UIMessages": "writable",
"Intercom": "writable",
"basicLightbox": "writable",
"algoliasearch": "writable",
"instantsearch": "writable",
"renderReCaptcha": "writable",
"KontentSmartLink": "writable",
"AlgoliaAnalyticsObject": "writable",
"videoHelper": "writable"
}
}