From d5bbfc4bc41a23e10f15cc081278b5658271001a Mon Sep 17 00:00:00 2001 From: Jonathan Hefner Date: Mon, 17 Nov 2025 17:53:58 -0600 Subject: [PATCH] Add .gitattributes to mark lock files as generated MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mark `Cargo.lock`, `package-lock.json`, and `uv.lock` as generated to prevent them from cluttering GitHub PR diffs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4b6f4d1 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +Cargo.lock linguist-generated=true +package-lock.json linguist-generated=true +uv.lock linguist-generated=true