add a option that does NOT add uv.lock
Hi, could uv add a option not creating a uv.lock file via cli arguments or config file?
I think you can use the --frozen argument for this.
uv add --frozen flask doesn't create a lock file.
What would the motivation be for doing this?
Basically I am contributing to tqdm, and I use uv for handle dependencies. I think that the tqdm developers are (maybe) not ready for using uv. However, uv are creating uv.lock constantly Previously, I just delete uv.lock file. That is annoying. So add a option that not add uv.lock file (or if it exists, do not update the lock file) will be useful for me.
I would recommend just adding the uv.lock file to a personal .gitignore
i.e., in <repo>/.git/info/exclude
i.e., in
<repo>/.git/info/exclude
yes this is what I using here