From 40f2fe81efe8810a31cb6a8b5153b19974ba5703 Mon Sep 17 00:00:00 2001 From: ltsyk Date: Thu, 30 Jul 2026 08:44:13 +0800 Subject: [PATCH] feat: tag .build extension as bazel/starlark Recognize build extension as bazel (issue #103) --- identify/extensions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/identify/extensions.py b/identify/extensions.py index f877350..576ed8f 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -23,6 +23,7 @@ 'bz2': {'binary', 'bzip2'}, 'bz3': {'binary', 'bzip3'}, 'bzl': {'text', 'bazel'}, + 'build': {'text', 'bazel'}, # e.g. package.BUILD / foo.build (#103) 'c': {'text', 'c'}, 'c++': {'text', 'c++'}, 'c++m': {'text', 'c++'},