-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update .gitignore with detailed patterns
- Loading branch information
Showing
1 changed file
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
.idea | ||
.DS_Store | ||
bin/* | ||
scripts/env.sh | ||
# IDE/Editor Specific | ||
.idea/ # IntelliJ, GoLand, or other JetBrains IDEs | ||
.vscode/ # Visual Studio Code | ||
*.sublime* # Sublime Text files | ||
|
||
# System Specific | ||
.DS_Store # macOS Finder metadata | ||
Thumbs.db # Windows image file metadata | ||
*.swp # Swap files | ||
|
||
# Go Build Artifacts | ||
bin/ # Compiled binaries | ||
*.exe # Windows executables | ||
*.out # Output files | ||
*.test # Test binaries | ||
|
||
# Logs, Temp Files, & Runtime Data | ||
logs/ # Application logs | ||
*.log # Log files | ||
*.tmp # Temporary files | ||
*.bak # Backup files | ||
|
||
# GitHub, CI/CD, and Debugging | ||
*.coverage # Code coverage files | ||
*.prof # Profiling files | ||
coverage.out # Coverage output file |