-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
156 lines (150 loc) · 4.14 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# Facsimile -- A Discrete-Event Simulation Library
# Copyright © 2004-2016, Michael J Allen.
#
# This file is part of Facsimile.
#
# Facsimile is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# Facsimile is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along with Facsimile. If not, see
# http://www.gnu.org/licenses/.
#
# The developers welcome all comments, suggestions and offers of assistance. For further information, please visit the
# project home page at:
#
# http://www.facsim.org/
#
# Thank you for your interest in the Facsimile project!
#
# IMPORTANT NOTE: All patches (modifications to existing files and/or the addition of new files) submitted for inclusion
# as part of the official Facsimile code base, must comply with the published Facsimile Coding Standards. If your code
# fails to comply with the standard, then your patches will be rejected. For further information, please visit the
# coding standards at:
#
# http://www.facsim.org/Documentation/CodingStandards/
#=======================================================================================================================
# git .gitattributes file.
#
# Determine how git will treat line endings in files belonging to Facsimile. It will override any defined
# 'core.autocrlf' git configuration.
#
# NOTE: This file is maintained as part of the Facsimile "skeleton" project, and is common to a number of other
# Facsimile projects, termed client projects. It must only be modified in the "skeleton" project, with changes being
# merged into client projects. Refer to the skeleton project for further details:
#
# https://github.com/Facsimile/skeleton
#=======================================================================================================================
# Set default behaviour text behavior. This is equivalent to the git config 'core.autocrlf' flag.
* text=auto
# Typically, all text files (Scala sources, Maven POM files, XML files, Eclipse preference/configuration/project files,
# etc.) should be normalized and converted to native line endings on checkout.
#
# TODO: For now, we're specifying that platform-specific scripts (such as Windows batch and command scripts, bash shell
# scripts) should be treated as all other source files, even if they should have platform-specific line endings in
# platform-specific distributions.
#
# Note: Some file types (.dxf, .wrl, and others) have binary as well as text formats. We should only ever use text
# versions of these files.
COPYING text
COPYING.LESSER text
.classpath text
.fbprefs text
.gitattributes text
.gitignore text
.jvmopts text
.project text
.sbtopts text
*.apt text
*.bat text
*.c text
*.cel text
*.cell text
*.cmd text
*.conf text
*.cpp text
*.css text
*.csv text
*.dic text
*.dxf text
*.h text
*.hpp text
*.html text
*.igs text
*.iges text
*.java text
*.js text
*.m text
*.md text
*.pl text
*.pm text
*.pom text
*.prefs text
*.properties text
*.sbt text
*.sc text
*.scala text
*.sft text
*.sh text
*.sql text
*.svg text
*.tab text
*.txt text
*.wrl text
*.xml text
*.yml text
# Binary files, including images, should always be treated as such.
*.avi binary
*.blend binary
*.doc binary
*.docm binary
*.docx binary
*.dot binary
*.dotm binary
*.dotx binary
*.dwg binary
*.gif binary
*.ico binary
*.jar binary
*.jpeg binary
*.jpg binary
*.max binary
*.mdb binary
*.mov binary
*.mp3 binary
*.mpeg binary
*.mpg binary
*.odb binary
*.odf binary
*.odg binary
*.odm binary
*.odp binary
*.ods binary
*.odt binary
*.ogg binary
*.otg binary
*.otp binary
*.ots binary
*.ott binary
*.pdf binary
*.png binary
*.pot binary
*.potm binary
*.potx binary
*.pps binary
*.ppsm binary
*.ppsx binary
*.ppt binary
*.pptm binary
*.pptx binary
*.wmv binary
*.xls binary
*.xlsm binary
*.xlsx binary
*.xlt binary
*.xltm binary
*.xltx binary