summaryrefslogtreecommitdiffstats
path: root/src/Config.ts
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 /src/Config.ts
parent1ca956daf7bcba223f14400f21b9695616b0f1d6 (diff)
downloaddoxdocgen-1d863f634d197c786904e9d4ea87a556f9859af9.tar.gz
Remove previous implementation
Diffstat (limited to 'src/Config.ts')
-rw-r--r--src/Config.ts2
1 files changed, 0 insertions, 2 deletions
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;
}