bsafe.app / .gitattributes
GHarshasri's picture
Update .gitattributes
c118460 verified
raw
history blame contribute delete
613 Bytes
# Ensure consistent line endings across OS
* text=auto
# Handle Python files as text and mark for linguist
*.py text eol=lf
# Treat CSVs as text
*.csv text
# Streamlit config files
*.toml text
# Ignore Jupyter notebook outputs (if used later)
*.ipynb text
# Handle common image formats (if you use icons, etc.)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
# Explicit UTF-8 encoding for text files
*.txt text working-tree-encoding=UTF-8
*.md text working-tree-encoding=UTF-8
# If you're deploying to platforms like Heroku or Streamlit Cloud
requirements.txt text
.gitattributes text
.gitignore text