-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
118 lines (97 loc) · 2.45 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
# Auto detect
## Handle line endings automatically for files detected as
## text and leave all files detected as binary untouched.
## This will handle all files NOT defined below.
* text=auto
# Sources
*.cpp text diff=cpp
*.h text diff=cpp
# Compiled Object files
*.slo binary
*.lo binary
*.o binary
*.obj binary
# Precompiled Headers
*.gch binary
*.pch binary
# Compiled Dynamic libraries
*.so binary
*.dylib binary
*.dll binary
# Compiled Static libraries
*.lai binary
*.la binary
*.a binary
*.lib binary
# Executables
*.exe binary
*.out binary
*.app binary
# Source code
*.js text
*.json text
*.ts text
# Documentation
*.ipynb text eol=lf
*.txt text
AUTHORS text
CHANGELOG text
CHANGES text
CONTRIBUTING text
COPYING text
copyright text
*COPYRIGHT* text
LICENSE text
NEWS text
TODO text
# Configs
*.config text
.editorconfig text
.env text
.gitattributes text
.gitconfig text
*.lock text -diff
package.json text eol=lf
package-lock.json text eol=lf -diff
.prettierrc text
yarn.lock text -diff
*.yaml text
*.yml text
Makefile text
makefile text
# Fixes syntax highlighting on GitHub to allow comments
tsconfig.json linguist-language=JSON-with-Comments
# Graphics
*.gif binary
*.ico binary
*.jpg binary
*.png binary
# SVG treated as an asset (binary) by default.
*.svg text
# If you want to treat it as binary,
# use the following line instead.
# *.svg binary
# Audio
*.mid binary
*.midi binary
*.mp3 binary
*.ogg binary
# Video
*.mp4 binary
# Archives
*.7z binary
*.gz binary
*.tar binary
*.zip binary
# Executables
*.exe binary
# Prevents massive diffs caused by vendored, minified files
**/.yarn/releases/** binary
**/.yarn/plugins/** binary
# Ignore files (like .npmignore or .gitignore)
*.*ignore text
# Apply override to all files in the directory
*.md linguist-detectable diff=markdown
# Fix syntax highlighting on GitHub to allow comments
.vscode/*.json linguist-language=JSON-with-Comments
JUCEStatic.lib filter=lfs diff=lfs merge=lfs -text