forked from transloadit/uppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
45 lines (44 loc) · 951 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"extends": ["standard", "standard-preact"],
"env": {
"browser": true,
"node": true,
"jest": true
},
"globals": {
"window": true,
"hexo": true
},
"plugins": ["jest", "compat", "jsdoc"],
"rules": {
"jsx-quotes": ["error", "prefer-double"],
"compat/compat": ["error"],
"jsdoc/check-alignment": ["warn"],
"jsdoc/check-examples": ["warn"],
"jsdoc/check-indentation": ["warn"],
"jsdoc/check-param-names": ["warn"],
"jsdoc/check-syntax": ["warn"],
"jsdoc/check-tag-names": ["warn"],
"jsdoc/check-types": ["warn"],
"jsdoc/newline-after-description": ["warn"],
"jsdoc/valid-types": ["warn"]
},
"settings": {
"polyfills": [
"Promise",
"fetch",
"Object.assign"
]
},
"overrides": [{
"files": [
"*.test.js",
"test/endtoend/*.js",
"website/*.js",
"bin/*.js"
],
"rules": {
"compat/compat": "off"
}
}]
}