Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/dockerfile/highlights.scm')
| -rw-r--r-- | runtime/queries/dockerfile/highlights.scm | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/runtime/queries/dockerfile/highlights.scm b/runtime/queries/dockerfile/highlights.scm deleted file mode 100644 index 577622e5..00000000 --- a/runtime/queries/dockerfile/highlights.scm +++ /dev/null @@ -1,72 +0,0 @@ -[ - "FROM" - "AS" - "RUN" - "CMD" - "LABEL" - "EXPOSE" - "ENV" - "ADD" - "COPY" - "ENTRYPOINT" - "VOLUME" - "USER" - "WORKDIR" - "ARG" - "ONBUILD" - "STOPSIGNAL" - "HEALTHCHECK" - "SHELL" - "MAINTAINER" - "CROSS_BUILD" - (heredoc_marker) - (heredoc_end) -] @keyword - -[ - ":" - "@" -] @operator - -(comment) @comment - - -(image_spec - (image_tag - ":" @punctuation.special) - (image_digest - "@" @punctuation.special)) - -[ - (double_quoted_string) - (single_quoted_string) - (json_string) - (heredoc_line) -] @string - -[ - (heredoc_marker) - (heredoc_end) -] @label - -((heredoc_block - (heredoc_line) @string)) - -(expansion - [ - "$" - "{" - "}" - ] @punctuation.special -) @none - -((variable) @constant - (#match? @constant "^[A-Z][A-Z_0-9]*$")) - -[ - (param) - (mount_param) -] @constant - -(expose_instruction - (expose_port) @constant.numeric.integer) |