-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathjsdoc.json
68 lines (67 loc) · 1.63 KB
/
jsdoc.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"extends": [ "plugin:jsdoc/recommended" ],
"settings": {
"jsdoc": {
"tagNamePreference": {
"augments": "extends",
"func": "method",
"function": "method",
"linkcode": "link",
"linkplain": "link",
"returns": "return",
"yields": "yield",
"cfg": "cfg",
"chainable": "chainable",
"tag constructor": "constructor",
"inheritable": "inheritable",
"localdoc": "localdoc",
"singleton": "singleton",
"uses": "uses"
},
"preferredTypes": {
"$": "jQuery",
"array": "Array",
"Boolean": "boolean",
"date": "Date",
"error": "Error",
"function": "Function",
"mixed": "Mixed",
"Null": "null",
"Number": "number",
"object": "Object",
"regexp": "RegExp",
"set": "Set",
"String": "string",
"Undefined": "undefined"
},
"mode": "jsdoc"
}
},
"rules": {
"jsdoc/check-param-names": [ "warn", { "allowExtraTrailingParamDocs": true } ],
"jsdoc/check-tag-names": [
"warn",
{
"definedTags": [
"ignore",
"internal",
"stable"
]
}
],
"jsdoc/check-values": "off",
"jsdoc/empty-tags": "off",
"jsdoc/no-blank-blocks": "warn",
"jsdoc/no-blank-block-descriptions": "warn",
"jsdoc/no-defaults": "off",
"jsdoc/no-multi-asterisks": [ "error", { "allowWhitespace": true } ],
"jsdoc/require-asterisk-prefix": "error",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-param-description": "off",
"jsdoc/require-property": "off",
"jsdoc/require-property-description": "off",
"jsdoc/require-property-name": "off",
"jsdoc/require-returns-description": "off",
"jsdoc/tag-lines": [ "warn", "any", { "startLines": 1 } ]
}
}