This reverts commit 7db8d80c3090f70b466284e70e9635b0e63528c9.(#17084) Release Notes: - N/A
15 lines
561 B
TOML
15 lines
561 B
TOML
name = "CSS"
|
|
grammar = "css"
|
|
path_suffixes = ["css"]
|
|
autoclose_before = ";:.,=}])>"
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["string", "comment"] },
|
|
{ start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
|
|
]
|
|
word_characters = ["-"]
|
|
block_comment = ["/* ", " */"]
|
|
prettier_parser_name = "css"
|