diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..308a82a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# jsdoc-generated documentation +doc \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..22d91e8 --- /dev/null +++ b/.vscode/tasks.json @@ -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, + }, + } + ] +} \ No newline at end of file diff --git a/jsdoc.json b/jsdoc.json new file mode 100644 index 0000000..ee2738f --- /dev/null +++ b/jsdoc.json @@ -0,0 +1,3 @@ +{ + "plugins": ["plugins/markdown"] +} \ No newline at end of file