Files
tikker/.gitignore
T
retoor 6e7645ee2f chore: add standard Python gitignore entries for __pycache__, .env, and venv
This commit updates the .gitignore file to exclude common Python development artifacts
such as __pycache__ directories, .env files, virtual environment folders, and other
standard Python project ignores.
2025-03-20 02:24:38 +00:00

76 lines
709 B
Plaintext

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Distribution / packaging
.Python
env/
venv/
ENV/
env.bak/
venv.bak/
*.egg-info/
.dist-info/
*.egg
# Logs
*.log
# Unit test / coverage reports
.coverage
*.cover
.hypothesis/
.pytest_cache/
# Jupyter Notebook checkpoints
.ipynb_checkpoints
# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
# Existing entries
*.db*
*.png
.*
.venv
contrib
logs_*
*.txt
# ---> C++
# Prerequisites
*.d
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app