forked from mmistakes/minimal-mistakes
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds gitattributes file (mmistakes#271)
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Define standard eol format | ||
|
||
# Web Files | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.css text eol=lf | ||
*.js text eol=lf | ||
|
||
# Jekyll related files | ||
*.yml text eol=lf | ||
|
||
# Git related files | ||
.gittattributes text eol=lf | ||
.gitignore text eol=lf | ||
.gitkeep text eol=lf | ||
|
||
# Ruby files | ||
*.rb text eol=lf | ||
Gemfile text eol=lf | ||
Gemfile.lock text eol=lf | ||
|
||
# Github specific fies | ||
LICENCE text eol=lf | ||
|
||
# Docker specific files | ||
Dockerfile text eol=lf | ||
|
||
# VSCode files | ||
*.json text eol=lf | ||
|
||
# General multimedia files | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.png binary | ||
*.t3x binary | ||
*.t3d binary | ||
*.exe binary | ||
*.data binary | ||
*.ttf binary | ||
*.eof binary | ||
*.eot binary | ||
*.swf binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.flv binary |