-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
61 lines (47 loc) · 1.09 KB
/
Copy path.gitattributes
File metadata and controls
61 lines (47 loc) · 1.09 KB
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
# All files
* text=auto
# EditorConfig
*.editorconfig text eol=lf
# Git special files
.gitignore text eol=lf
.gitattributes text eol=lf
.gitkeep text eol=lf
.gitmodules text eol=lf
# License
LICENSE text eol=lf
.license text eol=lf
# Markdown
*.md text eol=lf
*.markdown text eol=lf
# Doxygen
Doxyfile text eol=lf
# Plain text
*.txt text eol=lf
# Makefiles
makefile text eol=lf
Makefile text eol=lf
*.mk text eol=lf
# XML and JSON
*.xml text eol=lf
*.json text eol=lf
# Shell scirpts
*.sh text eol=lf
*.bash text eol=lf
# Windows CMD and PowerShell scripts
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Linker scripts
*.ld text eol=lf
# C
*.h text eol=lf
*.c text eol=lf
# C++
*.hpp text eol=lf
*.h++ text eol=lf
*.hxx text eol=lf
*.cpp text eol=lf
*.c++ text eol=lf
*.cxx text eol=lf
# Python
*.py text eol=lf