From eea1a6687c97d73c51a0728a971dec5c84c3f502 Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Thu, 13 Nov 2025 13:17:13 -0800 Subject: [PATCH] Provide support for VALA language files This change adds file extension detection support for .vala files, which is used by the VALA programming language. Closes: #258 Signed-off-by: Enji Cooper --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index f877350..3e7aa25 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -325,6 +325,7 @@ 'xsd': {'text', 'xml', 'xsd'}, 'xsl': {'text', 'xml', 'xsl'}, 'xslt': {'text', 'xml', 'xsl'}, + 'vala': {'text', 'vala'}, 'yaml': {'text', 'yaml'}, 'yamlld': {'text', 'yaml', 'yamlld'}, 'yang': {'text', 'yang'},