1name = "YAML"
2grammar = "yaml"
3path_suffixes = ["yml", "yaml", "pixi.lock"]
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_on_paste = false
14auto_indent_using_last_non_empty_line = false
15increase_indent_pattern = "^[^#]*:\\s*[|>]?\\s*$"
16prettier_parser_name = "yaml"
17tab_size = 2