summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2019-06-28 22:41:27 +0200
committerChristoph Schlosser <christoph@linux.com>2019-06-28 22:41:27 +0200
commit1d863f634d197c786904e9d4ea87a556f9859af9 (patch)
treec34828ddca19b357f9c863a37318f95d4b7e4269
parent1ca956daf7bcba223f14400f21b9695616b0f1d6 (diff)
downloaddoxdocgen-1d863f634d197c786904e9d4ea87a556f9859af9.tar.gz
Remove previous implementation
-rw-r--r--package.json5
-rw-r--r--src/Config.ts2
2 files changed, 0 insertions, 7 deletions
diff --git a/package.json b/package.json
index 0e19d96..59f776b 100644
--- a/package.json
+++ b/package.json
@@ -181,11 +181,6 @@
"type": "boolean",
"default": true
},
- "doxdocgen.generic.indentWidth": {
- "description": "At how many spaces the documentation should be inserted. Only Valid for param and tparam.",
- "type": "number",
- "default": 0
- },
"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"],
diff --git a/src/Config.ts b/src/Config.ts
index 8c3e723..b33aff2 100644
--- a/src/Config.ts
+++ b/src/Config.ts
@@ -57,7 +57,6 @@ class Generic {
public generateSmartText: boolean = true;
public splitCasingSmartText: boolean = true;
public order: string[] = ["brief", "empty", "tparam", "param", "return"];
- public indentWidth: number = 0;
}
export class Config {
@@ -96,7 +95,6 @@ export class Config {
values.Generic.generateSmartText = Generic.getConfiguration().get<boolean>("generateSmartText", values.Generic.generateSmartText);
values.Generic.splitCasingSmartText = Generic.getConfiguration().get<boolean>("splitCasingSmartText", values.Generic.splitCasingSmartText);
values.Generic.order = Generic.getConfiguration().get<string[]>("order", values.Generic.order);
- values.Generic.indentWidth = Generic.getConfiguration().get<number>("indentWidth", values.Generic.indentWidth);
return values;
}