1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# See https://github.com/github/linguist about the linguist attributes.
# See https://help.github.com/en/articles/dealing-with-line-endings
# about dealing with line endings.
old_docs/* linguist-documentation
tests/testcases_output/* linguist-generated=true
# Pascal text files
*.lpr linguist-language=Pascal text eol=auto
*.dpr linguist-language=Pascal text eol=auto
*.pas linguist-language=Pascal text eol=auto
*.inc linguist-language=Pascal text eol=auto
# Shell scripts.
# Even on Windows, shell scripts line endings must be Unix, to work with Cygwin's bash.
*.sh text eol=lf
# Other text files
Makefile text eol=auto
*.txt text eol=auto
*.md text eol=auto
*.html text eol=auto
*.css text eol=auto
*.tex text eol=auto
*.xml text eol=auto
*.hhc text eol=auto
*.hhk text eol=auto
*.hhp text eol=auto
PASDOC-OUTPUT text eol=auto
# Test cases checking specific line endings
tests/testcases/error_line_number_2.pas text eol=lf
tests/testcases/error_line_number_4.pas text eol=cr
|