forked from ZeroHubProjects/ZeroOnyx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
91 lines (81 loc) · 1.57 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
# .gitattributes helps enforce consistent handling
# of text and binary files across different platforms
# see https://git-scm.com/docs/gitattributes
# Current standards are inspired by a combination
# of /tg/station and goonstation configurations refined over the years
* text=auto
# BYOND-specific
*.dm text eol=lf
*.dme text eol=lf
*.dms text
*.dmf text
*.dmb binary
# TODO(rufus): add merge drivers and instructions
*.dmm text eol=lf merge=dmm
*.dmi binary merge=dmi
# if spaces are used to indent a line instead of tabs
# highlight this as error in git diff view
*.dm whitespace=indent-with-non-tab
# TODO(rufus): add TGUI merge drivers and instructions
# TGUI bundles
*.bundle.* binary merge=tgui-merge-bundle
*.chunk.* binary merge=tgui-merge-bundle
# Text files
## text documents
*.txt text
*.md text
## browser/frontend
*.htm text
*.html text
*.css text
*.scss text
*.js text
*.jsx text
*.cjs text
*.ts text
*.tsx text
*.json text
*.yaml text
*.yml text
## surprisingly, svg image is a text file
*.svg text
## configs
*.ini text
*.conf text
## scripts
*.bat text
*.ps1 text
*.sh text eol=lf
## programming languages
*.rb text
*.py text
*.lua text
*.cpp text
*.h text
## database files
*.sql text
# Binary files
*.exe binary
## libraries
*.dll binary
*.so binary
## images
*.png binary
*.gif binary
*.bmp binary
*.jpg binary
*.jpeg binary
*.ico binary
*.pdn binary
## sounds
*.mp3 binary
*.ogg binary
*.wav binary
## fonts
*.eot binary
*.woff binary
*.ttf binary
## archives
*.zip binary
*.7z binary
*.gz binary