Spaces:
Sleeping
Sleeping
| # Auto detect text files and perform LF normalization | |
| * text=auto | |
| # Python files | |
| *.py text diff=python | |
| # JavaScript files | |
| *.js text eol=lf | |
| # HTML files | |
| *.html text eol=lf | |
| # CSS files | |
| *.css text eol=lf | |
| # Markdown files | |
| *.md text diff=markdown | |
| # JSON files | |
| *.json text eol=lf | |
| # Configuration files | |
| *.yml text eol=lf | |
| *.yaml text eol=lf | |
| *.ini text eol=lf | |
| *.txt text eol=lf | |
| # Shell scripts | |
| *.sh text eol=lf | |
| *.ps1 text eol=crlf | |
| # Streamlit specific files | |
| *.streamlit/* text eol=lf | |
| # Binary files | |
| *.png binary | |
| *.jpg binary | |
| *.jpeg binary | |
| *.gif binary | |
| *.ico binary | |
| *.zip binary | |
| *.pdf binary | |
| # Exclude files from export | |
| .gitattributes export-ignore | |
| .gitignore export-ignore | |
| .github export-ignore | |
| # Mark folders to be ignored by Git archive | |
| /uploads export-ignore | |
| /__pycache__ export-ignore | |
| /.ipynb_checkpoints export-ignore | |