forked from UnitexGramLab/unitex-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
104 lines (85 loc) · 2.19 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# auto detect text files and perform LF normalization
* text=auto
# force conversion to Unix format
*.sh eol=lf
# force conversion to Windows format
*.bat eol=crlf
# for the next files NOT found below, normalize CRLF into LF
*.gitattributes text
*.gitignore text -crlf
*.md text
# lines below are from C++.gitattributes
# https://github.com/Danimoth/gitattributes
# sources
*.c text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
# unitex resources
*.def text
*.dic text
*.elg text
*.fst2 text
*.grf text
*.lst text
*.rul text
*.snt text
# unitex binaries
*.bin binary
*.bin2 binary
*.bin3 binary
*.inf binary
# extra binaries
*.zip binary
*.tar.gz binary
# compiled object files
*.slo binary
*.lo binary
*.o binary
*.obj binary
# precompiled Headers
*.gch binary
*.pch binary
# compiled dynamic libraries
*.so binary
*.dylib binary
*.dll binary
# compiled static libraries
*.lai binary
*.la binary
*.a binary
*.lib binary
# executables
*.exe binary
*.out binary
*.app binary
# lines below are from VisualStudio.gitattributes
# https://github.com/Danimoth/gitattributes
# custom for visual studio
*.sln text eol=crlf
*.vcproj text eol=crlf
*.filters text eol=crlf
*.user text eol=crlf
*.csproj text eol=crlf
*.vbproj text eol=crlf
*.fsproj text eol=crlf
*.dbproj text eol=crlf
*.vcxproj text eol=crlf
*.vcxitems text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf
# export ignores
.appveyor.yml export-ignore
.clang-format export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.gitignore.* export-ignore
gitignore.* export-ignore
.gitkeep export-ignore
.travis.yml export-ignore