1name = "YAML"
2grammar = "yaml"
3path_suffixes = ["yml", "yaml"]
4line_comments = ["# "]
5autoclose_before = ",]}"
6brackets = [
7 { start = "{", end = "}", close = true, newline = true },
8 { start = "[", end = "]", close = true, newline = true },
9 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
10 { start = "'", end = "'", close = true, newline = false, not_in = ["string"] },
11]
12
13auto_indent_using_last_non_empty_line = false
14increase_indent_pattern = ":\\s*[|>]?\\s*$"
15prettier_parser_name = "yaml"
16tab_size = 2