-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.cjs
47 lines (36 loc) · 866 Bytes
/
.eslintrc.cjs
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
"use strict";
module.exports = {
extends : [
"@tivac",
"plugin:jsdoc/recommended",
],
parserOptions : {
sourceType : "module",
},
env : {
node : true,
browser : true,
es2020 : true,
},
settings : {
jsdoc : {
mode : "typescript",
},
},
rules : {
"max-statements" : [ "warn", 25 ],
"newline-after-var" : "off",
// Block some features
"no-restricted-syntax" : [
"error",
// with() is so dangerous
"WithStatement",
// Object spread
{
selector : "ExperimentalSpreadProperty",
message : "Object spread doesn't work in all environments",
},
],
"jsdoc/tag-lines" : "off",
},
};