Skip to content

Commit

Permalink
Docs: Add jsdoc.conf.json JSDOC configuration file.
Browse files Browse the repository at this point in the history
Left this file off by mistake in [41351].

Fixes #41682.


git-svn-id: https://develop.svn.wordpress.org/trunk@41370 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
adamsilverstein committed Sep 11, 2017
1 parent 14f9c47 commit 71aaf1f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions jsdoc.conf.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"plugins": [],
"recurseDepth": 10,
"source": {
"include": ["src/wp-includes/js"],
"exclude": [
"src/wp-includes/js/tinymce",
"src/wp-includes/js/crop",
"src/wp-includes/js/imgareaselect",
"src/wp-includes/js/jcrop",
"src/wp-includes/js/jquery",
"src/wp-includes/js/mediaelement",
"src/wp-includes/js/swfupload",
"src/wp-includes/js/thickbox",
"src/wp-includes/js/media-audiovideo.js",
"src/wp-includes/js/media-grid.js",
"src/wp-includes/js/media-models.js",
"src/wp-includes/js/media-views.js"
],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"theme": "united",
"outputSourceFiles": true,
"outputSourcePath": true,
"linenums": true
},
"opts": {
"template": "./node_modules/ink-docstrap/template",
"recurse": true
}
}

0 comments on commit 71aaf1f

Please sign in to comment.