From e43dfda608b349dad475e3a745b4cb7099cbbe59 Mon Sep 17 00:00:00 2001 From: Ross Manchester Date: Sat, 9 Sep 2023 21:44:39 +0100 Subject: [PATCH] chore: add highlighting for codeowners files Add `CODEOWNERS` as an additional file type for `git-ignore` in the language file. `CODEOWNERS`'s grammar is close enough to that of `.gitignore`, this can be used to avoid making a new grammar specifically for `CODEOWNERS` files. Resolves: #8091 --- languages.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/languages.toml b/languages.toml index 199dd3354c735..d4f551075ce69 100644 --- a/languages.toml +++ b/languages.toml @@ -1380,7 +1380,8 @@ source = { git = "https://github.com/mtoohey31/tree-sitter-gitattributes", rev = name = "git-ignore" scope = "source.gitignore" roots = [] -file-types = [".gitignore", ".gitignore_global", ".ignore", "prettierignore", ".eslintignore", ".npmignore"] +file-types = [".gitignore", ".gitignore_global", ".ignore", "prettierignore", + ".eslintignore", ".npmignore", "CODEOWNERS"] injection-regex = "git-ignore" comment-token = "#" grammar = "gitignore"