Skip to content

Commit

Permalink
update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust committed Dec 24, 2024
1 parent e780caf commit 2343014
Showing 1 changed file with 100 additions and 7 deletions.
107 changes: 100 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Pipfile*
###############################################
# Project Specific
###############################################


###############################################
# Python
###############################################

# Byte-compiled / optimized / DLL files
__pycache__/
Expand All @@ -22,6 +29,7 @@ lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
Expand All @@ -44,8 +52,9 @@ htmlcov/
.cache
nosetests.xml
coverage.xml
*,cover
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
Expand All @@ -68,7 +77,7 @@ docs/_build/
# PyBuilder
target/

# IPython Notebook
# Jupyter Notebook
.ipynb_checkpoints

# pyenv
Expand All @@ -77,21 +86,105 @@ target/
# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/
Pipfile*

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# PyPi
.pypirc
# mkdocs documentation
/site

# mypy
.mypy_cache/


###############################################
# Operating Systems
###############################################
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

#
# MacOS
#

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

#
# Linux
#
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# vscode
.vscode/
# .nfs files are created when an open file is removed but is still being accessed
.nfs*

0 comments on commit 2343014

Please sign in to comment.