From 4f34d8dbed1e698d0296ed46be6b88d4131af788 Mon Sep 17 00:00:00 2001 From: Anton Harniakou Date: Fri, 21 Mar 2025 12:15:57 +0300 Subject: [PATCH] chore: gitignore files with an extension *.db For example the commmand `cargo run --package limbo_cli --bin limbo database.db` will generate a `database.db` file, and it's unlikely we'll ever need to track such files if they are placed inside the root of the project. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bb445538d..8a7437707 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ dist/ .tmp/ +*.db **/*.db-wal **/*.db-shm **/*-wal @@ -32,4 +33,4 @@ dist/ # testing testing/limbo_output.txt -**/limbo_output.txt \ No newline at end of file +**/limbo_output.txt