config.toml

 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]
11
12increase_indent_pattern = ":\\s*[|>]?\\s*$"
13prettier_parser_name = "yaml"
14tab_size = 2