From 17df55665b94bcdca21ef5c43c1d3a6ac4bb4a07 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 7 Aug 2026 16:32:37 -0700 Subject: [PATCH] Use object for `lineComment` --- .../app/templates/ext-language/language-configuration.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/generators/app/templates/ext-language/language-configuration.json b/generators/app/templates/ext-language/language-configuration.json index 8f162a0c..d43d2642 100644 --- a/generators/app/templates/ext-language/language-configuration.json +++ b/generators/app/templates/ext-language/language-configuration.json @@ -1,7 +1,9 @@ { "comments": { // symbol used for single line comment. Remove this entry if your language does not support line comments - "lineComment": "//", + "lineComment": { + "comment": "//" + }, // symbols used for start and end a block comment. Remove this entry if your language does not support block comments "blockComment": [ "/*", "*/" ] }, @@ -27,4 +29,4 @@ ["\"", "\""], ["'", "'"] ] -} \ No newline at end of file +}