From 7b7cf982ef81588d9622646bd3767d0a39e26aa7 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Sun, 17 Nov 2024 18:24:03 +0000 Subject: [PATCH] Ignore uv.lock file When somoene uses `uv` to manage their venv, uv.lock is generated automatically when `uv sync` is run. This PR removes it, so that it is not committed accidentally (happened in #147) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 18a1ce6..7838577 100644 --- a/.gitignore +++ b/.gitignore @@ -402,3 +402,6 @@ $RECYCLE.BIN/ # hatch-vcs cherry_picker/_version.py + +# Ignore uv.lock +uv.lock