-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
39 lines (30 loc) · 1.17 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
# Copyright 2020, G. Christopher Warrington <code@cw.codes>
#
# dnjc is free software: you can redistribute it and/or modify it under the
# terms of the GNU Affero General Public License Version 3 as published by
# the Free Software Foundation.
#
# dnjc 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 Affero General Public License for
# more details.
#
# A copy of the GNU Affero General Public License Version 3 is included in
# the file LICENSE in the root of the repository.
#
# SPDX-License-Identifier: AGPL-3.0-only
# Have Git automatically detect text files and normalize them.
* text=auto
# Leave this alone to help tools that try to auto-detect licenses.
/LICENSE text eol=lf
# Some Windows-specific files should always be CRLF.
*.cmd text eol=crlf
*.DotSettings text eol=crlf
*.sln text eol=crlf
# Shell scripts need to always have LF.
*.sh text eol=lf
*.zsh text eol=lf
# Emacs has trouble processing packages if they have CRLF. (E.g.,
# package-install-file cannot find the Package-Version header.)
*.el text eol=lf
Makefile text eol=lf