# Hugging Face Space - Stable Diffusion Image Generator # SIMPLIFIED - No Git LFS needed (models downloaded at runtime) # Global text handling * text=auto # Text files - force LF line endings (Linux/Mac compatible) *.py text eol=lf *.txt text eol=lf *.md text eol=lf *.json text eol=lf *.yaml text eol=lf *.yml text eol=lf *.toml text eol=lf *.html text eol=lf *.css text eol=lf *.js text eol=lf # Binary files - don't touch (but we're not storing any) *.bin -text *.pth -text *.pt -text *.safetensors -text *.ckpt -text *.pkl -text *.npy -text *.onnx -text # Images - binary format *.jpg -text *.jpeg -text *.png -text *.gif -text *.webp -text # Archives - binary *.zip -text *.tar -text *.gz -text *.7z -text # Exclude Python cache and build artifacts __pycache__/ export-ignore *.pyc export-ignore *.pyo export-ignore *.pyd export-ignore *.egg-info/ export-ignore dist/ export-ignore build/ export-ignore