-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitattributes
80 lines (62 loc) · 1.64 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#############################################
# Fuzzy search like in Sublime Text: #
# https://github.com/tajmone/fuzzy-search #
#############################################
* 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
## Shell Scripts
################
*.bat text eol=crlf
*.cmd text eol=crlf
*.sh text eol=lf
*.ps1 text eol=crlf
## Source Files
###############
*.cs text
*.ex text eol=lf
*.fsx text
*.h text
*.js text
*.lua text
*.php text
*.py text
## Documentation Files
######################
*.asciidoc text
*.md text
*.txt text
COPYING text
LICENSE text
## PureBasic Files
##################
[attr]PureBasic text linguist-language=PureBasic
*.cfg text linguist-generated=true
*.pb PureBasic
*.pbf PureBasic
*.pbi PureBasic
*.pbp linguist-language=XML linguist-generated=true
## Zig Files
############
[attr]Zig text eol=lf
*.zig Zig
## Exceptions
#############
/dataset/*.txt text eol=lf linguist-vendored
test_results.txt text eol=lf linguist-generated
expected_results.txt text eol=lf linguist-generated
## Linguist Settings
####################
# Manually define/override some file extension so that GitHub can
# 1) correctly gather statistics on source files, and
# 2) use proper syntax highlighting on GitHub's WebUI.
*.html linguist-documentation
article/forrest2016.html linguist-generated
# EOF #