From 5e6d61d400db41da913c52f0f06b9ae292d6264e Mon Sep 17 00:00:00 2001 From: James Kolpack Date: Sun, 11 Jan 2026 09:54:11 -0500 Subject: [PATCH] Update .gitignore to include additional rules and hidden files This commit modifies the .gitignore file to add rules for ignoring hidden files and directories, specifically those starting with a dot (e.g., .claude/* and .rules). This change helps maintain a cleaner repository by preventing unnecessary files from being tracked. Additionally, the existing rule for ignoring the DataBackup directory remains intact, ensuring that backup files are excluded from version control. --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 421a3b0..ad36564 100644 --- a/.gitignore +++ b/.gitignore @@ -23,7 +23,8 @@ _ReSharper*/ DataBackup/ *.db -/.claude/* +/.*/* +.*rules # Production secrets and configuration auth-secrets.json @@ -34,3 +35,4 @@ docker-compose.override.yml # Runtime data directory /WebApp/Data/* +