Fix .gitignore to exclude user-specific files

- Remove tracked .idea/vcs.xml (user-specific VCS settings)
- Use whitelist approach for .idea/ directory (consistent with backend)
- Improve log file patterns (*.log)
- Remove redundant .idea/workspace.xml pattern (covered by wildcard)
This commit is contained in:
2026-03-10 00:03:22 -06:00
parent 1c4f13dc75
commit 93b587cd9c

10
.gitignore vendored
View File

@@ -5,10 +5,10 @@ target/
.kotlin .kotlin
### IntelliJ IDEA ### ### IntelliJ IDEA ###
.idea/modules.xml .idea/*
.idea/jarRepositories.xml !.idea/runConfigurations/
.idea/compiler.xml !.idea/encodings.xml
.idea/libraries/ !.idea/misc.xml
*.iws *.iws
*.iml *.iml
*.ipr *.ipr
@@ -40,7 +40,7 @@ build/
## Database related ## Database related
connectionpetstore.properties connectionpetstore.properties
.idea/workspace.xml
# Log files # Log files
*.log
log.txt log.txt