diff options
| author | Dean Anderson <dean@locomation.ai> | 2018-09-26 16:02:48 -0400 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2018-09-29 19:08:20 +0200 |
| commit | d3452b0a1e9f4424591b5621ee107a95a61300d5 (patch) | |
| tree | b12037f9cbdbeb3cef10c553cc5cf3711f1f0c54 /package.json | |
| parent | 1fa12911c78438c8fdce6358f61731640fe29b20 (diff) | |
| download | doxdocgen-d3452b0a1e9f4424591b5621ee107a95a61300d5.tar.gz | |
Added additional File Header fields for version, copyright, and custom lines
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/package.json b/package.json index 8e6181a..a6112da 100644 --- a/package.json +++ b/package.json @@ -91,10 +91,25 @@ "type": "string", "default": "@file {name}" }, + "doxdocgen.file.copyrightTag": { + "description": "File copyright documentation tag.", + "type": ["array", "string"], + "default": ["@copyright Copyright (c) {year}"] + }, + "doxdocgen.file.versionTag": { + "description": "Version number for the file.", + "type": "string", + "default": "@version 0.1" + }, + "doxdocgen.file.customTag": { + "description": "Additional file documentation.", + "type": ["array", "string"], + "default": [] + }, "doxdocgen.file.fileOrder": { "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", "empty", "file", "author", "date"] + "default": ["file", "author", "brief", "version", "date", "empty", "copyright", "empty", "custom"] }, "doxdocgen.generic.includeTypeAtReturn": { "description": "Whether include type information at return.", |