From d8960f1d0280ed55044db9a3c9e545b7ac681d83 Mon Sep 17 00:00:00 2001 From: bymyself Date: Wed, 30 Jul 2025 00:50:46 -0700 Subject: [PATCH] [chore] Mark generated TypeScript files in .gitattributes Added linguist-generated attributes for comfyRegistryTypes.ts and generatedManagerTypes.ts to exclude them from language statistics and collapse them by default in PR diffs. --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 37d931349f..af4b6adbc9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5,3 +5,7 @@ *.ts text eol=lf *.vue text eol=lf *.js text eol=lf + +# Generated files +src/types/comfyRegistryTypes.ts linguist-generated=true +src/types/generatedManagerTypes.ts linguist-generated=true