We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ba4aeb commit 03ca935Copy full SHA for 03ca935
1 file changed
lib/jsdoc-parse.js
@@ -37,6 +37,8 @@ function parse (jsdocExplainOutput, options) {
37
38
if (options['sort-by'] && !a(options['sort-by']).contains('none')) {
39
data = sort(data, options['sort-by'])
40
+ } else if (!options['sort-by']) {
41
+ data = sort(data, [ 'scope', 'category', 'kind', 'order' ])
42
}
43
44
return data
0 commit comments