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