From 03bf1e69f42eae6d155623832a8ac0ea1d29b389 Mon Sep 17 00:00:00 2001 From: James Russo Date: Sat, 18 Apr 2026 11:54:58 -0700 Subject: [PATCH] chore: add linguist overrides so TypeScript is the dominant language (#326) HTML files in this repo are compositions (user-facing content and registry templates), not the framework source. The framework itself is TypeScript. Hide HTML from Linguist's detection so the language bar on GitHub reflects what the repo actually implements. Co-authored-by: Claude Opus 4.7 (1M context) --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index 6e7f67f1f..1e6d07153 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,8 @@ # Golden baseline videos for regression tests packages/producer/tests/*/output/output.mp4 filter=lfs diff=lfs merge=lfs -text + +# GitHub Linguist overrides — HTML files are compositions (user content / templates), +# not the framework source. Hide them from the repo language stats so TypeScript, +# which is the actual implementation, surfaces as the dominant language. +registry/**/*.html linguist-vendored +*.html linguist-detectable=false