You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'A list of javascript source files (or glob expressions) to parse for documentation. If this option is not set jsdoc-parse will wait for source code on stdin (i.e. `cat *.js | jsdoc-parse <options>`).',
10
+
typeLabel: '[underline]{file} ...'
11
+
},{
12
+
name: 'private',
13
+
alias: 'P',
14
+
type: Boolean,
15
+
description: 'Include identifiers marked @private in the output'
16
+
},{
17
+
name: 'html',
18
+
alias: 'H',
19
+
type: Boolean,
20
+
description: 'Enable experimental parsing of .html files'
21
+
},{
22
+
name: 'conf',
23
+
type: String,
24
+
typeLabel: '[underline]{file}',
25
+
description: 'Jsdoc config file.'
26
+
},{
27
+
name: 'sort-by',
28
+
type: String,
29
+
multiple: true,
30
+
alias: 's',
31
+
description: 'Sort by one of more properties, e.g. `--sort-by kind category`. Defaults to `[ "scope", "category", "kind", "order" ]`. Pass the special value `none` to remove the default sort order. ',
32
+
typeLabel: '[underline]{property} ...'
33
+
},{
34
+
name: 'stats',
35
+
type: Boolean,
36
+
description: 'Print a few stats about the doclets parsed'
37
+
}];
38
+
39
+
exports.usage={
40
+
title: 'jsdoc-parse',
41
+
description: 'Jsdoc-annotated source code in, JSON format documentation out.',
0 commit comments