Last active
September 11, 2025 21:17
-
-
Save xceric/bb6cc0863702dca150210cf700c52f13 to your computer and use it in GitHub Desktop.
Git attributes for Typescript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See this article for reference: https://help.github.com/articles/dealing-with-line-endings/ | |
# Refreshing repo after line ending change: | |
# https://help.github.com/articles/dealing-with-line-endings/#refreshing-a-repository-after-changing-line-endings | |
# Handle line endings automatically for files detected as text | |
# and leave all files detected as binary untouched. | |
* text=auto | |
# | |
# The above will handle all files NOT found below | |
# | |
# These files are text and should be normalized (Convert crlf => lf) | |
# Use lf as eol for these files | |
.editorconfig text eol=lf | |
.gitignore text eol=lf | |
*.css text eol=lf | |
*.df text eol=lf | |
*.htm text eol=lf | |
*.html text eol=lf | |
*.java text eol=lf | |
*.js text eol=lf | |
*.json text eol=lf | |
*.jsp text eol=lf | |
*.jspf text eol=lf | |
*.md text eol=lf | |
*.properties text eol=lf | |
*.scss text eol=lf | |
*.sh text eol=lf | |
*.tld text eol=lf | |
*.ts text eol=lf | |
*.txt text eol=lf | |
*.xml text eol=lf | |
# These files are binary and should be left untouched | |
# (binary is a macro for -text -diff) | |
*.class binary | |
*.dll binary | |
*.ear binary | |
*.gif binary | |
*.ico binary | |
*.jar binary | |
*.jpg binary | |
*.jpeg binary | |
*.png binary | |
*.so binary | |
*.war binary |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment