1name = "Vue.js"
2grammar = "vue"
3path_suffixes = ["vue"]
4block_comment = ["<!-- ", " -->"]
5autoclose_before = ";:.,=}])>"
6brackets = [
7 { start = "{", end = "}", close = true, newline = true },
8 { start = "[", end = "]", close = true, newline = true },
9 { start = "(", end = ")", close = true, newline = true },
10 { start = "<", end = ">", close = true, newline = true, not_in = ["string", "comment"] },
11 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
12 { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
13 { start = "`", end = "`", close = true, newline = false, not_in = ["string"] },
14]
15word_characters = ["-"]
16prettier_parser_name = "vue"