Skip to content

Commit

Permalink
chore: add .gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHepworth committed Jun 9, 2024
1 parent 56d4808 commit f051b69
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# General #
###########
*.log
*.tmp
*.bak

# Editor backups and configuration #
####################################
*~
*.swp
*.swo
.vscode/ # Visual Studio Code workspace files
.idea/ # JetBrains IDE workspace files
*.sublime-workspace # Sublime Text workspace files

# Python virtual environments #
###############################
venv/
*.pyc

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git-lfs is used for versioning large files; do not track them directly
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Backup & Others #
###################
*.bak
*.tmp
*.accdb
*.lnk
*.xlsx
*.pptx
*.docx

0 comments on commit f051b69

Please sign in to comment.