treat jinja as comments in hcl

This commit is contained in:
2025-10-06 16:22:40 -06:00
parent 257abf0c72
commit 169afdafda
3 changed files with 1449 additions and 1428 deletions

View File

@@ -349,6 +349,7 @@ module.exports = function make_grammar(dialect) {
comment: ($) =>
token(
choice(
seq("{%", /.*/),
seq("#", /.*/),
seq("//", /.*/),
seq("/*", /[^*]*\*+([^/*][^*]*\*+)*/, "/"),