Skip to content

Commit

Permalink
chore: update .gitignore with detailed patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
kardolus committed Nov 6, 2024
1 parent 1aa6723 commit d4b9a25
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
.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

# Local Configuration
scripts/env.sh # Environment config script

# GitHub, CI/CD, and Debugging
*.coverage # Code coverage files
*.prof # Profiling files
coverage.out # Coverage output file

0 comments on commit d4b9a25

Please sign in to comment.