config.toml

 1name = "CSS"
 2path_suffixes = ["css"]
 3autoclose_before = ";:.,=}])>"
 4brackets = [
 5    { start = "{", end = "}", close = true, newline = true },
 6    { start = "[", end = "]", close = true, newline = true },
 7    { start = "(", end = ")", close = true, newline = true },
 8    { start = "\"", end = "\"", close = true, newline = false, not_in = ["string", "comment"] },
 9    { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
10]
11word_characters = ["-"]
12block_comment = ["/* ", " */"]
13prettier_parser_name = "css"