From 178b9f8b03bb8df98d35330178ebfe41a4314d06 Mon Sep 17 00:00:00 2001 From: mhucka Date: Wed, 10 Jun 2026 06:28:03 +0000 Subject: [PATCH 1/3] Add `.gitattributes` file This adds a `.gitattributes` file to tell GitHub's Linguist tool how to treat certain special cases. --- .gitattributes | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..e9442e21f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,25 @@ +# Copyright 2026 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Mark files generated by uv to be collapsed by default in PRs. +# See: https://github.com/github/linguist/#generated-code +dev_tools/requirements/envs/*.txt linguist-generated=true + +# Include Markdown files in GitHub's file statistics for this repo. +*.md linguist-detectable + +# Exclude config files from GitHub's file statistics. Most are YAML files and +# Linguist already treats .yaml files as data, so only add some exceptions. +.markdownlintrc linguist-documentation +.shfmt linguist-documentation From ec869a33740e2572adc145c801be2784b6900b09 Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Wed, 10 Jun 2026 19:10:30 -0700 Subject: [PATCH 2/3] Update .gitattributes Co-authored-by: Pavol Juhas --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index e9442e21f..e6a83eb43 100644 --- a/.gitattributes +++ b/.gitattributes @@ -14,7 +14,7 @@ # Mark files generated by uv to be collapsed by default in PRs. # See: https://github.com/github/linguist/#generated-code -dev_tools/requirements/envs/*.txt linguist-generated=true +*.env.txt linguist-generated=true # Include Markdown files in GitHub's file statistics for this repo. *.md linguist-detectable From 30ea4a9bf80dcfc60bccc969e9f2f0ce7c993ee8 Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Wed, 10 Jun 2026 19:10:40 -0700 Subject: [PATCH 3/3] Update .gitattributes Co-authored-by: Pavol Juhas --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index e6a83eb43..dac55f050 100644 --- a/.gitattributes +++ b/.gitattributes @@ -22,4 +22,3 @@ # Exclude config files from GitHub's file statistics. Most are YAML files and # Linguist already treats .yaml files as data, so only add some exceptions. .markdownlintrc linguist-documentation -.shfmt linguist-documentation