config.toml

 1name = "JSONC"
 2grammar = "jsonc"
 3path_suffixes = ["jsonc", "bun.lock", "tsconfig.json", "pyrightconfig.json"]
 4line_comments = ["// "]
 5autoclose_before = ",]}"
 6brackets = [
 7    { start = "{", end = "}", close = true, surround = true, newline = true },
 8    { start = "[", end = "]", close = true, surround = true, newline = true },
 9    { start = "(", end = ")", close = true, surround = true, newline = false },
10    { start = "\"", end = "\"", close = true, surround = true, newline = false, not_in = ["string"] },
11]
12tab_size = 2
13prettier_parser_name = "jsonc"
14
15[overrides.string]
16completion_query_characters = [":", " "]