-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
I've added support for Dockerfile "language" even if it's not the language actually. All words added are listed in the [official docs](https://docs.docker.com/reference/dockerfile/#overview). I've put it to the other group of languages. P.S. File name is `docker_file.json`, because when I name it `dockerfile.json`, my VS Code detects it as an actual dockerfile. Let me know if name should be changed.
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -353,4 +353,5 @@ | |
,"xhosa" | ||
,"code_cobol" | ||
,"code_common_lisp" | ||
,"docker_file" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "docker_file", | ||
"noLazyMode": true, | ||
"words": [ | ||
"ADD", | ||
"ARG", | ||
"AS", | ||
"CMD", | ||
"COPY", | ||
"ENTRYPOINT", | ||
"ENV", | ||
"EXPOSE", | ||
"FROM", | ||
"HEALTHCHECK", | ||
"LABEL", | ||
"MAINTAINER", | ||
"ONBUILD", | ||
"RUN", | ||
"SHELL", | ||
"STOPSIGNAL", | ||
"USER", | ||
"VOLUME", | ||
"WORKDIR" | ||
] | ||
} |