diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-03-02 22:21:22 +0100 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-03-02 23:27:10 +0100 |
| commit | 16452c8e0c644fa979270e99906eb9c34a13ca5f (patch) | |
| tree | 25173bf8f8b79167193ce36094bf80399b1ea724 /package.json | |
| parent | b837545df65a31ba5dac154644c359c2a55d1531 (diff) | |
| download | doxdocgen-16452c8e0c644fa979270e99906eb9c34a13ca5f.tar.gz | |
Make order of comment tags customizable
Fix #55
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/package.json b/package.json index 0ba91da..1b89a55 100644 --- a/package.json +++ b/package.json @@ -71,11 +71,6 @@ "type": "string", "default": "Create a {name} object" }, - "doxdocgen.cpp.newLineAfterTParams": { - "description": "Whether to insert a newline after the template params.", - "type": "boolean", - "default": false - }, "doxdocgen.cpp.tparamTemplate": { "description": "The template of the template parameter DoxyGen line(s) that are generated. If empty it won't get generated at all.", "type": "string", @@ -97,19 +92,9 @@ "default": "@file {name}" }, "doxdocgen.file.fileOrder": { - "description": "The order to use for the date. Valid values are shown in default setting.", + "description": "The order to use for the file comment. Values can be used multiple times. Valid values are shown in default setting.", "type": ["array", "string"], - "default": ["brief", "file", "author", "date"] - }, - "doxdocgen.generic.newLineAfterBrief": { - "description": "Whether to insert a newline after a brief.", - "type": "boolean", - "default": true - }, - "doxdocgen.generic.newLineAfterParams": { - "description": "Whether to insert a newline after the params.", - "type": "boolean", - "default": false + "default": ["brief", "empty", "file", "author", "date"] }, "doxdocgen.generic.includeTypeAtReturn": { "description": "Whether include type information at return.", @@ -165,6 +150,11 @@ "description": "Decide if the values put into {name} should be split according to their casing.", "type": "boolean", "default": true + }, + "doxdocgen.generic.order": { + "description": "The order to use for the comment generation. Values can be used multiple times. Valid values are shown in default setting.", + "type": ["array", "string"], + "default": ["brief", "empty", "tparam", "param", "return"] } } } |