Skip to content

Commit

Permalink
add jsdoc config.
Browse files Browse the repository at this point in the history
  • Loading branch information
chjj committed Apr 15, 2016
1 parent 72e907f commit e187637
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.git*
test/
node_modules/
.jshintrc
.jscsrc
jsdoc.json
24 changes: 24 additions & 0 deletions jsdoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"tags": {
"allowUnknownTags": true
},
"source": {
"include": ["README.md", "lib/"],
"exclude": [],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": false,
"monospaceLinks": false
},
"opts": {
"template": "templates/default",
"encoding": "utf8",
"destination": "./docs/",
"recurse": true,
"private": true,
"pedantic": true
}
}

0 comments on commit e187637

Please sign in to comment.