Purescript library to handle the formatting of dates and times.
1# Set line endings to auto.
2* text=auto eol=lf
3
4# Force batch scripts to always use CRLF line endings so that if a repo is accessed
5# in Windows via a file share from Linux, the scripts will work.
6*.{cmd,[cC][mM][dD]} text eol=crlf
7*.{bat,[bB][aA][tT]} text eol=crlf
8
9# Force bash scripts to always use LF line endings so that if a repo is accessed
10# in Unix via a file share from Windows, the scripts will work.
11*.sh text eol=lf
12
13# Force Haskell hs files to LF.
14*.hs text eol=lf
15
16# treat these as binary files
17*.png binary
18*.jpg binary