From 34766e242ab0a059c8313b068b98d275e2a879b8 Mon Sep 17 00:00:00 2001 From: Dylan Richardson Date: Tue, 21 Dec 2021 18:45:02 -0600 Subject: [PATCH] languages: add .dockerfile extension (#1330) Many folks use `.dockerfile` as an extension for dockerfiles in addition to plain `Dockerfile`. This change associates both file extensions with dockerfile syntax highlighting --- languages.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages.toml b/languages.toml index 50c6f7f9..54fa63ee 100644 --- a/languages.toml +++ b/languages.toml @@ -473,7 +473,7 @@ name = "dockerfile" scope = "source.dockerfile" injection-regex = "docker|dockerfile" roots = ["Dockerfile"] -file-types = ["Dockerfile"] +file-types = ["Dockerfile", "dockerfile"] comment-token = "#" indent = { tab-width = 2, unit = " " } language-server = { command = "docker-langserver", args = ["--stdio"] }