forked from SFS/LightDMMock
Setup coding environment for VSCode and jsdoc
This commit is contained in:
parent
c3a1624aab
commit
968e6437ad
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
# jsdoc-generated documentation
|
||||
doc
|
23
.vscode/tasks.json
vendored
Normal file
23
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "jsdoc",
|
||||
"type": "process",
|
||||
"command": "jsdoc",
|
||||
"args": ["src/LightDMMock.js", "-c", "jsdoc.json", "-d", "doc"],
|
||||
"detail": "Generate documentation",
|
||||
"presentation": {
|
||||
"echo": false,
|
||||
"reveal": "silent",
|
||||
"showReuseMessage": false,
|
||||
"panel": "dedicated",
|
||||
"close": true,
|
||||
},
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true,
|
||||
},
|
||||
}
|
||||
]
|
||||
}
|
3
jsdoc.json
Normal file
3
jsdoc.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"plugins": ["plugins/markdown"]
|
||||
}
|
Loading…
Reference in New Issue
Block a user