-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
81 lines (72 loc) · 2.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
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
# ==============================================================================
# Sublime Glulx https://github.com/tajmone/sublime-glulx
# ==============================================================================
# Set Git's default behaviour to text-files autodetection, in case users don't
# have `core.autocrlf` set:
* text=auto
## ===========
## GLULX FILES
## ===========
*.ga text
*.ulx binary
## ===================
## DOCUMENTATION FILES
## ===================
LICENSE text
*.md text
## ============
## GIT SETTINGS
## ============
.gitattributes text
.gitconfig text
.gitignore text
.gitmodules text
## ==================
## SUBLIME TEXT FILES
## ==================
*.hidden-tmTheme text eol=lf
*.sublime-build text
*.sublime-color-scheme text
*.sublime-commands text
*.sublime-completions text
*.sublime-keymap text
*.sublime-macro text
*.sublime-menu text
*.sublime-mousemap text
*.sublime-project text
*.sublime-settings text
*.sublime-snippet text
*.sublime-syntax text
*.sublime-theme text
*.sublime-workspace text
*.sublime_metrics text
*.sublime_session text
*.tmPreferences text
*.YAML-propertyList text
## ========
## GRAPHICS
## ========
*.gif binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.svg binary
*.svgz binary
*.wbmp binary
*.webp binary
# ==============================================================================
# GitHub Linguist
# ==============================================================================
# -- https://github.com/github/linguist
# Manually define/override some extension so that GitHub's Linguist library can
# 1) correctly gather statistics on source files, and
# 2) use proper syntax highlighting on GitHub's WebUI.
## ==============
## Sublime Text 3
## ==============
# New Sublime Text file formats not reckognized by Linguist:
*.sublime-color-scheme linguist-language=JSON
*.hidden-tmTheme linguist-language=XML
*.YAML-propertyList linguist-language=YAML
# EOF #