21 lines
616 B
Plaintext
Executable File
21 lines
616 B
Plaintext
Executable File
#
|
|
# .gitattributes
|
|
#
|
|
|
|
# Auto-detect text files, ensure they use LF.
|
|
* text=auto eol=lf
|
|
|
|
# These files are always considered text and should use LF.
|
|
# See core.whitespace @ http://git-scm.com/docs/git-config for whitespace flags.
|
|
*.php text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
|
|
|
|
# do not git export the following directories
|
|
build-tools/ export-ignore
|
|
tests/ export-ignore
|
|
|
|
# do not git export the following files
|
|
.editorconfig export-ignore
|
|
.php_cs export-ignore
|
|
.scrutinizer.yml export-ignore
|
|
.travis.yml export-ignore
|
|
phpunit.xml.dist export-ignore |