-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
207 lines (137 loc) · 4.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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
* text=auto
# Document
README text eol=lf
CHANGELOG text eol=lf
LICENSE text eol=lf
*.md text eol=lf
# Configurations
## git
.gitattributes text eol=lf
.gitconfig text eol=lf
.gitkeep text eol=lf
.gitmodules text eol=lf
.gitignore text eol=lf
pre-commit text eol=lf
## jetbrains
*.iml text eol=lf
## visual studio & visual studio code
*.code-workspace text eol=lf
*.code-snippets text eol=lf
*.csproj text eol=lf
*.filters text eol=lf
*.pubxml text eol=lf
*.sln text eol=lf
*.user text eol=lf
*.vcxproj text eol=lf
## Unix / Linux
### mysql
*.cnf text eol=lf
### nginx
mysql text eol=lf
redis text eol=lf
*.com text eol=lf
*.conf text eol=lf
### systemd
*.service text eol=lf
## others
.clang-format text eol=lf
.editorconfig text eol=lf
.env text eol=lf
.flake8 text eol=lf
.lintstagedrc text eol=lf
.npmignore text eol=lf
.npmrc text eol=lf
.prettierrc text eol=lf
.prettierignore text eol=lf
.style.yapf text eol=lf
.swcrc text eol=lf
.yarnrc text eol=lf
config text eol=lf
makefile text eol=lf
*.ini text eol=lf
*.json text eol=lf
*.lock text eol=lf
*.toml text eol=lf
*.xml text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
# Programming Language Source Code
## c & cpp & object-c
*.c text eol=lf
*.cc text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.hpp text eol=lf
*.m text eol=lf
## csharp
*.cs text eol=lf
*.razor text eol=lf
*.xaml text eol=lf
## css
*.css text eol=lf
*.less text eol=lf
*.sass text eol=lf
*.scss text eol=lf
## dart
*.dart text eol=lf
## go
*.go text eol=lf
## handlebars
*.hbs text eol=lf
## html
*.asp text eol=lf
*.html text eol=lf
## java
*.java text eol=lf
## javascript & typescript
*.cjs text eol=lf
*.js text eol=lf
*.jsx text eol=lf
*.map text eol=lf
*.mjs text eol=lf
*.cts text eol=lf
*.mts text eol=lf
*.ts text eol=lf
*.tsx text eol=lf
*.snap text eol=lf
## kotlin
*.kt text eol=lf
## lisp
*.asd text eol=lf
*.lisp text eol=lf
*.lisp-expr text eol=lf
## lua
*.lua text eol=lf
## ocaml
*.ml text eol=lf
*.mll text eol=lf
## python
*.py text eol=lf
## ruby
*.rb text eol=lf
## rust
*.rs text eol=lf
## scala
*.sbt text eol=lf
*.scala text eol=lf
## scaml
*.scaml text eol=lf
## sql
*.sql text eol=lf
## swift
*.swift text eol=lf
## windows cli
*.bat text eol=lf
*.cmd text eol=lf
*.ps1 text eol=lf
*.psm1 text eol=lf
## unix-like cli
gradlew text eol=lf
*.sh text eol=lf
## others
*.svg text eol=lf
# misc
*.log text eol=lf
*.txt text eol=lf
# windows driver
*.inf text eol=crlf