1name = "Shell Script"
2path_suffixes = ["sh", "bash", "bashrc", "bash_profile", "bash_aliases", "bash_logout", "profile", "zsh", "zshrc", "zshenv", "zsh_profile", "zsh_aliases", "zsh_histfile", "zlogin", "zprofile"]
3line_comment = "# "
4first_line_pattern = "^#!.*\\b(?:ba|z)?sh\\b"
5brackets = [
6 { start = "[", end = "]", close = true, newline = false },
7 { start = "(", end = ")", close = true, newline = false },
8 { start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
9]