generated from alan-if/alan-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
55 lines (45 loc) · 1.24 KB
/
.gitattributes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Set Git's default behaviour to text-files autodetection, in case users don't
# have `core.autocrlf` set:
* text=auto
## Repository Configuration
###########################
.editorconfig text eol=lf
.gitlab-ci.yml text eol=lf
.travis.yml text eol=lf
.gitattributes text eol=lf
.gitconfig text eol=lf
.gitignore text eol=lf
.gitmodules text eol=lf
## Alan IF Files
################
*.a3c binary
*.a3r binary
*.a3s text linguist-language=Text linguist-detectable=false
*.a3t text linguist-language=Text linguist-detectable=false
*.alan text linguist-language=Alan linguist-detectable=true
*.i text linguist-language=Alan linguist-detectable=true
*.ifid text linguist-generated=true
*.log text
*.sav binary
# Alan IDE Files
.project text linguist-language=XML linguist-generated=true
## Shell Scripts
################
*.bat text eol=crlf
*.sh text eol=lf
*.ps1 text eol=crlf
*.sed text eol=lf
## Documentation
################
*.adoc text
*.asciidoc text
*.md text
*.txt text
*.doc binary
*.docx binary
*.odt binary
*.pdf binary
COPYING text
LICENSE text
UNLICENSE text
# EOF #