Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 56063d762bb0234e08a58751b8d0303882f2a47f (plain) (blame)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
* text=auto

# Generic files
AUTHORS text
ChangeLog text
COPYING text
NEWS text
README text
CONTRIBUTING text
LICENSE text
*.txt text
*.md text
*.zip binary

# C-like Sources
*.asm text
*.c text
*.cc text
*.cpp text
*.h text
*.in text
*.s text
*.S text
*.elf binary

# C-like configuration/scripts
*.ac text
*.am text
# file permission +x
*.bat text
*.build text
*.incl text
makefile text
Makefile text
*.mk text
# file permission +x
*.sh text

# Qt
*.pro text
*.qml text
*.qrc text

# Visual Studio
*.dsp text eol=crlf
*.dsw text eol=crlf
*.filters text eol=crlf
*.sln text eol=crlf
*.vcxproj text eol=crlf

# C output files 
# (These should not normally be checked in, exceptions for pre-compiled libraries and tests)
*.o binary
*.d text
# file permission +x
*.dll binary diff=dll
*.a binary
# file permission +x
*.exe binary
*.out binary
*.app binary
# file permission +x
*.jnilib binary diff=hex
# file permission +x
*.so binary

# Web/Javascript/Node
*.css text
*.htm text
*.html text
*.js text
*.json text
.npmignore text
package-list text
*.xml text
*.xsd text
*.xsl text
yarn.lock text
*.lock text

# Images
*.gif binary
*.icns binary
*.ico binary
*.jpg binary
*.jpeg binary
*.png binary
*.PNG binary
*.xpm binary

# Java/Eclipse
# remove trailing whitespace
*.java text
# remove trailing whitespace
*.properties text
.api_filters text
.classpath text
*.exsd text
*.g text
*.inf text
*.ini text
*.launch text
*.mappings text
# remove trailing whitespace
*.MF text
.options text
*.options text
*.prefs text
*.product text
.project text
*.setup text
*.target text

# Java output files
# (These should not normally be checked in, exceptions for pre-compiled libraries and tests)
*.class binary
*.jar binary

# Files used in tests
*.awts text
be32 binary
be32lib binary
be64 binary
be64lib binary
*.bin binary
exe binary
exebig_g binary
exe_g binary
*.expected text
*.F90 text
*.init text
launchConfigTestGdbinit text
le32 binary
le32lib binary
le64 binary
le64lib binary
*.main text
output-1 text
*.pda text
*.rts text
*.srec text eol=lf
test_commands text

# Other special files
cdtOptions text
.clang-format text
.contentsettings text
*.csv text
*.dia binary
*.dictionary text
.eclipseproduct text
.euml2 text
.gitattributes text
.gitignore text
.gitkeep text
*.patch text
*.src text
*.tmLanguage text
*.top text
*.ucd text
.umlproject text
# remove trailing whitespace
# file permission +x
*.py text
*.xhtml text
*.entitlements text

Back to the top