diff --git a/README.md b/README.md
index 44ea0245..2fa8d1ab 100644
--- a/README.md
+++ b/README.md
@@ -26,4 +26,3 @@ Already implemented:
| | ifFormattingDoLocation | Same | New, Same | `if true then do:`
` return a.`
`end.`
⬇️
`if true then`
`do:`
` return a.`
`end.` |
| | ifFormattingStatementLocation | Same | New, Same | `if true then return a.`
⬇️
`if true then`
` return a.` |
| | temptableFormatting | true | Boolean | |
-| | treeLogging | true | Boolean | |
diff --git a/package.json b/package.json
index ffa4d8e7..e5e6d48c 100644
--- a/package.json
+++ b/package.json
@@ -146,7 +146,7 @@
"New",
"Same"
],
- "description": "TODO"
+ "description": "Should THEN clause be on a new line or the same line as the IF keyword?"
},
"AblFormatter.ifFormattingDoLocation": {
"order": 702,
@@ -156,7 +156,7 @@
"New",
"Same"
],
- "description": "TODO"
+ "description": "Should DO block be on a new line or the same line as the THEN keyword?"
},
"AblFormatter.ifFormattingStatementLocation": {
"order": 703,
@@ -166,7 +166,7 @@
"New",
"Same"
],
- "description": "TODO"
+ "description": "Should the first statement in an IF block be on a new line or the same line?"
},
"AblFormatter.temptableFormatting": {
"order": 800,
@@ -218,12 +218,6 @@
],
"description": "Add a new line before the ELSE?"
},
- "AblFormatter.treeLogging": {
- "order": 10000,
- "type": "boolean",
- "default": "true",
- "description": "TODO: REMOVE THIS SETTING. Enable tree printing to console"
- },
"AblFormatter.showTreeInfoOnHover": {
"order": 10100,
"type": "boolean",
diff --git a/resources/samples/.vscode/settings.json b/resources/samples/.vscode/settings.json
index 85800eb9..955a8fed 100644
--- a/resources/samples/.vscode/settings.json
+++ b/resources/samples/.vscode/settings.json
@@ -9,6 +9,5 @@
"AblFormatter.blockFormatting": true,
"AblFormatter.ifFormatting": false,
"AblFormatter.temptableFormatting": false,
- "AblFormatter.treeLogging": true,
"AblFormatter.propertyFormatting": false,
}
\ No newline at end of file