1name = "HCL"
2grammar = "hcl"
3path_suffixes = ["hcl"]
4line_comments = ["# ", "// "]
5block_comment = ["/*", "*/"]
6autoclose_before = ",}])"
7brackets = [
8 { start = "{", end = "}", close = true, newline = true },
9 { start = "[", end = "]", close = true, newline = true },
10 { start = "(", end = ")", close = true, newline = true },
11 { start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
12 { start = "'", end = "'", close = true, newline = false, not_in = ["comment", "string"] },
13 { start = "/*", end = " */", close = true, newline = false, not_in = ["comment", "string"] },
14]
15tab_size = 2