-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0a275e
commit f883b7b
Showing
1 changed file
with
52 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,58 @@ | ||
* text eol=lf | ||
# https://www.aleksandrhovhannisyan.com/blog/crlf-vs-lf-normalizing-line-endings-in-git/ | ||
# git ls-files --eol | ||
|
||
# sqlite files | ||
* text=auto | ||
|
||
|
||
*.css text | ||
*.csv text | ||
*.htm text | ||
*.html text | ||
*.ini text | ||
*.inc text | ||
*.js text | ||
*.json text | ||
*.php text | ||
*.pl text | ||
*.rb text | ||
*.py text | ||
*.scm text | ||
*.sql text | ||
.htaccess text | ||
*.sh text | ||
*.svg text | ||
*.tsv text | ||
*.txt text | ||
*.xml text | ||
*.xsl text | ||
|
||
# Specific Windows | ||
*.bat text eol=crlf | ||
|
||
# truly binary and should not be modified. | ||
*.7z binary | ||
*.db binary | ||
*.docx binary | ||
*.epub binary | ||
*.mobi binary | ||
*.pdf binary | ||
*.flv binary | ||
*.fla binary | ||
*.gif binary | ||
*.gz binary | ||
*.ico binary | ||
*.jar binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.odg binary | ||
*.odt binary | ||
*.otf binary | ||
*.pdf binary | ||
*.png binary | ||
|
||
*.pptx binary | ||
*.psd binary | ||
*.ttf binary | ||
*.xlsx binary | ||
*.woff binary | ||
*.woff2 binary | ||
*.zip binary |