Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 58 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,63 @@
# ==========================================================
# 🧹 Professional .gitignore for Python + Nx + Node Projects
# ==========================================================

.nx/installation
.nx/cache
.nx/workspace-data
# --- Python ---
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pkl
*.egg-info/
.eggs/
dist/
build/
pip-wheel-metadata/
*.log
*.sqlite3
.env
.venv/
venv/
env/
*.bak

env
.vscode
.nx
node_modules

dist
# --- Node / Nx ---
node_modules/
.nx/
.nx/cache/
.nx/installation/
.nx/workspace-data/
.vscode/
*.tsbuildinfo

# --- Environment & Config ---
.env
.pypirc
.DS_Store
Thumbs.db
*.swp

# --- IDE / Editor ---
.idea/
*.iml
*.code-workspace

# --- Coverage / Testing ---
.coverage
htmlcov/
.tox/
pytest_cache/
.mypy_cache/
.pytest_cache/
.cache/

# --- Distribution Artifacts ---
dist/
build/
site/

__pycache__
# --- Misc ---
# Ignore temporary files, logs, or backup files
*.tmp
*.log
*.bak