Skip to content

Commit

Permalink
Create .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
orcalinux authored Dec 25, 2024
1 parent b195db0 commit d80a1af
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions parser/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Compiled Object files
*.o
*.obj

# Precompiled Header files
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Compiled Static libraries
*.a
*.lib

# Executable files
scanner
*.exe
*.out

# Debug files
*.dSYM/
*.stackdump

# Temporary files and backups
*.tmp
*.swp
*.bak
*.log

# OS generated files
.DS_Store
Thumbs.db

# C++ cache files and directories
*.cache
.cache/
*.ccache
.ccache/

# Visual Studio Code workspace settings
.vscode/
*.code-workspace

# CLion and JetBrains IDE files
.idea/
cmake-build-*/

# Ignore binary and debug folders
bin/
debug/
release/

0 comments on commit d80a1af

Please sign in to comment.