| 1234567891011121314151617181920212223 |
- # Define the line ending behavior of the different file extensions
- # Set default behaviour, in case users don't have core.autocrlf set.
- * text=auto
- * text eol=lf
- # Denote all files that are truly binary and should not be modified.
- *.png binary
- *.jpg binary
- *.gif binary
- *.ico binary
- *.mo binary
- *.pdf binary
- *.dll binary
- *.exe binary
- # Remove files for archives generated using `git archive`
- phpunit.xml.dist export-ignore
- .gitignore export-ignore
- .gitattributes export-ignore
- .editorconfig export-ignore
- tests/test_app export-ignore
- tests/test_files export-ignore
- .github/ export-ignore
|