config.toml
1name = "Dockerfile"
2grammar = "dockerfile"
3path_suffixes = ["Dockerfile"]
4line_comments = ["# "]
5brackets = [
6 { start = "{", end = "}", close = true, newline = true },
7 { start = "[", end = "]", close = true, newline = true },
8 { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
9]