Skip to content

Commit

Permalink
Create .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe authored Aug 12, 2024
1 parent 744e416 commit b313ffc
Showing 1 changed file with 96 additions and 0 deletions.
96 changes: 96 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# General
*.log
*.tmp
*.temp
*.swp
*.DS_Store
*.class

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Virtual environment
env/
venv/
ENV/
env.bak/
venv.bak/

# Python specific
*.egg
*.egg-info/
.eggs/
*.pyo

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Java specific
target/
bin/
*.jar
*.war
*.ear
*.class

# IntelliJ IDEA files
.idea/
*.iml
*.iws

# VS Code files
.vscode/

# MacOS
.DS_Store

# Node
node_modules/

# Logs and databases
*.sql
*.sqlite3

# Environment variables
.env

# Files generated by testing
.coverage
.tox/
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
.cache/

# Jupyter Notebook
.ipynb_checkpoints

# Documentation
docs/_build/

# Images
images/
media/

# Ignore any files in src/utils that aren't tracked
src/utils/*
!src/utils/README.md

0 comments on commit b313ffc

Please sign in to comment.