123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # Set default behaviour, in case users don't have core.autocrlf set.
- # More info: https://help.github.com/articles/dealing-with-line-endings
- * text=auto
- # Explicitly declare text files we want to always be normalized and converted
- # to native line endings on checkout.
- *.php text eol=lf
- *.pl text eol=lf
- *.sql text eol=lf
- *.htm text eol=lf
- *.html text eol=lf
- *.js text eol=lf
- *.json text eol=lf
- *.css text eol=lf
- *.lang text eol=lf
- *.txt text eol=lf
- *.md text eol=lf
- *.pp text eol=lf
- *.sh text eol=lf
- *.yml text eol=lf
- *.yaml text eol=lf
- *.conf text eol=lf
- .bash_aliases text eol=lf
- # Denote all files that are truly binary and should not be modified.
- *.bmp binary
- *.frm binary
- *.ico binary
- *.jpeg binary
- *.jpg binary
- *.MYD binary
- *.MYI binary
- *.odf binary
- *.odt binary
- *.png binary
- # Export ignores to generate clean production tarballs
- /build export-ignore
- /dev export-ignore
- /doc export-ignore
- /test export-ignore
- .buildpath export-ignore
- /build.xml export-ignore
- .codeclimate.yml export-ignore
- Dockerfile export-ignore
- .dockerignore export-ignore
- .editorconfig export-ignore
- .gitattributes export-ignore
- .gitignore export-ignore
- .mailmap export-ignore
- .scrutinizer.yml export-ignore
- .settings export-ignore
- .travis.yml export-ignore
- .tx export-ignore
|