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.
This commit is contained in:
2026-01-11 09:54:11 -05:00
parent 37e82646b8
commit 5e6d61d400
+3 -1
View File
@@ -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/*