-
Notifications
You must be signed in to change notification settings - Fork 2
/
.esdoc.json
48 lines (48 loc) · 1.88 KB
/
.esdoc.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
{
"source": "./src/encoded/static/components",
"index" : "./src/encoded/static/components/README.md",
"destination": "./docs/javascript-reference",
"excludes" : ["testdata/*"],
"plugins": [
{
"name": "esdoc-standard-plugin",
"option" : {
"lint" : { "enable" : true },
"coverage" : { "enable" : true },
"accessor": {"access": ["public", "protected", "private"], "autoPrivate": false },
"typeInference": {"enable": true},
"undocumentIdentifier" : { "enable" : false },
"unexportIdentifier" : { "enable" : true },
"brand" : {
"logo" : "./src/encoded/static/img/4dn-logo-raster.png",
"image" : "https://data.4dnucleome.org/static/img/4dn-logo-raster.png",
"title" : "4DN Data Portal Front-End Reference",
"repository": "https://github.com/4dn-dcic/fourfront",
"site" : "https://data.4dnucleome.org",
"description" : "ECMAScript & React Component reference for the 4DN Data Portal",
"author": "http://dcic.4dnucleome.org/"
}
}
},
{ "name": "esdoc-react-plugin", "option": { "enable": true } },
{ "name": "esdoc-jsx-plugin", "option": { "enable": true } },
{ "name": "esdoc-external-nodejs-plugin", "option": { "enable": false } },
{ "name": "esdoc-unexported-identifier-plugin", "option": { "enable": true } },
{ "name": "esdoc-undocumented-identifier-plugin", "option": { "enable": false } },
{ "name": "esdoc-lint-plugin", "option": { "enable": true } },
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"classProperties": true,
"doExpressions": true,
"functionBind": true,
"objectRestSpread": true,
"functionSent": true,
"asyncGenerators": true,
"decorators": true,
"exportExtensions": true,
"dynamicImport": true
}
}
]
}