19 lines
731 B
Plaintext
Executable File
19 lines
731 B
Plaintext
Executable File
# 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
|
|
*.json text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
|
|
|
|
# Ignore these files in GitHub dists and `git archive` actions.
|
|
/.gitattributes export-ignore
|
|
/.github export-ignore
|
|
/.gitignore export-ignore
|
|
/.travis.yml export-ignore
|
|
/.php_cs export-ignore
|
|
/phpstan.neon.dist export-ignore
|
|
/phpunit.xml.dist export-ignore
|
|
/tests export-ignore
|
|
/CONTRIBUTING.md export-ignore
|