From 9ebd0e747209afd2e1c22f13941d0f5eefc0223b Mon Sep 17 00:00:00 2001 From: kardolus Date: Thu, 7 Nov 2024 00:10:52 +0100 Subject: [PATCH] chore: update .gitignore with detailed patterns --- .gitignore | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ad6b35f..004caf9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,26 @@ -.idea -.DS_Store -bin/* -scripts/env.sh \ No newline at end of file +# 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