-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
41 lines (41 loc) · 979 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
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es2022": true
},
"parserOptions": {
"sourceType": "module"
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "jsdoc"],
"extends": ["eslint:recommended", "plugin:jsdoc/recommended"],
"globals": {
"globalEvents": "readonly",
"refCard": "readonly",
"refContainer": "readonly",
"refDice": "readonly",
"refHolder": "readonly",
"refMultistate": "readonly",
"refObject": "readonly",
"refPackageId": "readonly",
"world": "writable"
},
"settings": {
"jsdoc": {
"structuredTags": {
"remarks": { "type": false }
}
}
},
"rules": {
"no-unused-vars": "off",
"jsdoc/tag-lines": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-returns": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-returns-description": "off"
}
}