@neurocode-ai/session-ui 1.18.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +71 -0
- package/src/components/apply-patch-file.test.ts +43 -0
- package/src/components/apply-patch-file.ts +78 -0
- package/src/components/basic-tool.css +358 -0
- package/src/components/basic-tool.stories.tsx +133 -0
- package/src/components/basic-tool.tsx +343 -0
- package/src/components/dock-prompt.stories.tsx +62 -0
- package/src/components/dock-prompt.tsx +23 -0
- package/src/components/file-media.tsx +291 -0
- package/src/components/file-search.tsx +72 -0
- package/src/components/file-ssr.tsx +197 -0
- package/src/components/file.css +46 -0
- package/src/components/file.tsx +1202 -0
- package/src/components/line-comment-annotations.tsx +637 -0
- package/src/components/line-comment-styles.ts +292 -0
- package/src/components/line-comment.stories.tsx +115 -0
- package/src/components/line-comment.tsx +439 -0
- package/src/components/markdown-cache.tsx +78 -0
- package/src/components/markdown-code-state.test.ts +32 -0
- package/src/components/markdown-code-state.ts +22 -0
- package/src/components/markdown-inline-code-kind.test.ts +46 -0
- package/src/components/markdown-inline-code-kind.ts +1915 -0
- package/src/components/markdown-preload.test.ts +18 -0
- package/src/components/markdown-shiki.worker.ts +104 -0
- package/src/components/markdown-stream.test.ts +194 -0
- package/src/components/markdown-stream.ts +110 -0
- package/src/components/markdown-worker-protocol.test.ts +81 -0
- package/src/components/markdown-worker-protocol.ts +48 -0
- package/src/components/markdown-worker-queue.test.ts +49 -0
- package/src/components/markdown-worker-queue.ts +64 -0
- package/src/components/markdown-worker-transport.test.ts +56 -0
- package/src/components/markdown-worker-transport.ts +41 -0
- package/src/components/markdown-worker.ts +122 -0
- package/src/components/markdown.css +377 -0
- package/src/components/markdown.stories.tsx +53 -0
- package/src/components/markdown.tsx +678 -0
- package/src/components/message-file.test.ts +63 -0
- package/src/components/message-file.ts +34 -0
- package/src/components/message-nav.css +127 -0
- package/src/components/message-nav.stories.tsx +7 -0
- package/src/components/message-nav.tsx +102 -0
- package/src/components/message-part-text.ts +3 -0
- package/src/components/message-part.css +1569 -0
- package/src/components/message-part.stories.tsx +7 -0
- package/src/components/message-part.test.ts +28 -0
- package/src/components/message-part.tsx +2662 -0
- package/src/components/session-diff.test.ts +135 -0
- package/src/components/session-diff.ts +145 -0
- package/src/components/session-retry.tsx +74 -0
- package/src/components/session-review.css +247 -0
- package/src/components/session-review.stories.tsx +7 -0
- package/src/components/session-review.tsx +657 -0
- package/src/components/session-turn.css +241 -0
- package/src/components/session-turn.stories.tsx +7 -0
- package/src/components/session-turn.tsx +543 -0
- package/src/components/shell-submessage-motion.stories.tsx +346 -0
- package/src/components/shell-submessage.css +23 -0
- package/src/components/timeline-playground.stories.tsx +2090 -0
- package/src/components/tool-count-label.css +57 -0
- package/src/components/tool-count-label.tsx +58 -0
- package/src/components/tool-count-summary.css +102 -0
- package/src/components/tool-count-summary.stories.tsx +238 -0
- package/src/components/tool-count-summary.tsx +52 -0
- package/src/components/tool-error-card.css +91 -0
- package/src/components/tool-error-card.stories.tsx +92 -0
- package/src/components/tool-error-card.tsx +157 -0
- package/src/components/tool-status-title.css +89 -0
- package/src/components/tool-status-title.tsx +133 -0
- package/src/context/data.tsx +64 -0
- package/src/context/index.ts +1 -0
- package/src/pierre/comment-hover.ts +83 -0
- package/src/pierre/commented-lines.ts +91 -0
- package/src/pierre/diff-selection.ts +71 -0
- package/src/pierre/file-find.ts +485 -0
- package/src/pierre/file-runtime.ts +114 -0
- package/src/pierre/file-selection.ts +85 -0
- package/src/pierre/index.ts +186 -0
- package/src/pierre/media.ts +110 -0
- package/src/pierre/selection-bridge.ts +132 -0
- package/src/pierre/virtualizer.ts +100 -0
- package/src/pierre/worker.ts +52 -0
- package/src/styles/index.css +14 -0
- package/src/v2/components/attachment-card-v2.css +70 -0
- package/src/v2/components/attachment-card-v2.tsx +33 -0
- package/src/v2/components/basic-tool-v2.css +163 -0
- package/src/v2/components/basic-tool-v2.stories.tsx +137 -0
- package/src/v2/components/basic-tool-v2.tsx +139 -0
- package/src/v2/components/comment-card-v2.tsx +64 -0
- package/src/v2/components/line-comment-annotations-v2.tsx +220 -0
- package/src/v2/components/prompt-input/attachments.ts +266 -0
- package/src/v2/components/prompt-input/index.tsx +706 -0
- package/src/v2/components/prompt-input/interaction.ts +482 -0
- package/src/v2/components/prompt-input/machine.test.ts +164 -0
- package/src/v2/components/prompt-input/machine.ts +261 -0
- package/src/v2/components/prompt-input/prompt-input.stories.tsx +221 -0
- package/src/v2/components/prompt-input/store.test.ts +116 -0
- package/src/v2/components/prompt-input/store.ts +152 -0
- package/src/v2/components/prompt-input/types.ts +106 -0
- package/src/v2/components/session-file-panel-v2.tsx +43 -0
- package/src/v2/components/session-progress-indicator-v2.css +875 -0
- package/src/v2/components/session-progress-indicator-v2.stories.tsx +66 -0
- package/src/v2/components/session-progress-indicator-v2.tsx +32 -0
- package/src/v2/components/session-review-empty-changes-v2.tsx +17 -0
- package/src/v2/components/session-review-empty-no-git-v2.tsx +28 -0
- package/src/v2/components/session-review-file-preview-v2-virtualize.test.ts +13 -0
- package/src/v2/components/session-review-file-preview-v2-virtualize.ts +5 -0
- package/src/v2/components/session-review-file-preview-v2.tsx +290 -0
- package/src/v2/components/session-review-v2.css +458 -0
- package/src/v2/components/session-review-v2.tsx +340 -0
- package/src/v2/components/tool-error-card-v2.css +200 -0
- package/src/v2/components/tool-error-card-v2.stories.tsx +91 -0
- package/src/v2/components/tool-error-card-v2.tsx +166 -0
- package/sst-env.d.ts +10 -0
- package/tsconfig.json +19 -0
|
@@ -0,0 +1,1915 @@
|
|
|
1
|
+
// One-off copy from GitHub Linguist languages.yml (e9fe3c9f230cd9220afcd057f75702de4d7700c9), plus common lockfile suffixes.
|
|
2
|
+
// Normalized to lower-case; numeric manpage-style extensions are excluded so versions like `1.2` stay plain code.
|
|
3
|
+
const pathExtensions = new Set([
|
|
4
|
+
"a51",
|
|
5
|
+
"abap",
|
|
6
|
+
"abnf",
|
|
7
|
+
"action",
|
|
8
|
+
"ada",
|
|
9
|
+
"adb",
|
|
10
|
+
"adml",
|
|
11
|
+
"admx",
|
|
12
|
+
"ado",
|
|
13
|
+
"adoc",
|
|
14
|
+
"adp",
|
|
15
|
+
"ads",
|
|
16
|
+
"afm",
|
|
17
|
+
"agc",
|
|
18
|
+
"agda",
|
|
19
|
+
"ahk",
|
|
20
|
+
"ahkl",
|
|
21
|
+
"aidl",
|
|
22
|
+
"aj",
|
|
23
|
+
"ak",
|
|
24
|
+
"al",
|
|
25
|
+
"alg",
|
|
26
|
+
"als",
|
|
27
|
+
"ampl",
|
|
28
|
+
"angelscript",
|
|
29
|
+
"anim",
|
|
30
|
+
"ant",
|
|
31
|
+
"antlers.html",
|
|
32
|
+
"antlers.php",
|
|
33
|
+
"antlers.xml",
|
|
34
|
+
"apacheconf",
|
|
35
|
+
"apex",
|
|
36
|
+
"apib",
|
|
37
|
+
"apl",
|
|
38
|
+
"app",
|
|
39
|
+
"app.src",
|
|
40
|
+
"applescript",
|
|
41
|
+
"arc",
|
|
42
|
+
"arpa",
|
|
43
|
+
"arr",
|
|
44
|
+
"as",
|
|
45
|
+
"asax",
|
|
46
|
+
"asc",
|
|
47
|
+
"asciidoc",
|
|
48
|
+
"ascx",
|
|
49
|
+
"asd",
|
|
50
|
+
"asddls",
|
|
51
|
+
"ash",
|
|
52
|
+
"ashx",
|
|
53
|
+
"asl",
|
|
54
|
+
"asm",
|
|
55
|
+
"asmx",
|
|
56
|
+
"asn",
|
|
57
|
+
"asn1",
|
|
58
|
+
"asp",
|
|
59
|
+
"aspx",
|
|
60
|
+
"asset",
|
|
61
|
+
"astro",
|
|
62
|
+
"asy",
|
|
63
|
+
"au3",
|
|
64
|
+
"aug",
|
|
65
|
+
"auk",
|
|
66
|
+
"aux",
|
|
67
|
+
"avdl",
|
|
68
|
+
"avsc",
|
|
69
|
+
"aw",
|
|
70
|
+
"awk",
|
|
71
|
+
"axaml",
|
|
72
|
+
"axd",
|
|
73
|
+
"axi",
|
|
74
|
+
"axi.erb",
|
|
75
|
+
"axml",
|
|
76
|
+
"axs",
|
|
77
|
+
"axs.erb",
|
|
78
|
+
"b",
|
|
79
|
+
"bal",
|
|
80
|
+
"baml",
|
|
81
|
+
"bas",
|
|
82
|
+
"bash",
|
|
83
|
+
"bat",
|
|
84
|
+
"bats",
|
|
85
|
+
"bb",
|
|
86
|
+
"bbappend",
|
|
87
|
+
"bbclass",
|
|
88
|
+
"bbx",
|
|
89
|
+
"bdf",
|
|
90
|
+
"bdy",
|
|
91
|
+
"be",
|
|
92
|
+
"befunge",
|
|
93
|
+
"bf",
|
|
94
|
+
"bi",
|
|
95
|
+
"bib",
|
|
96
|
+
"bibtex",
|
|
97
|
+
"bicep",
|
|
98
|
+
"bicepparam",
|
|
99
|
+
"bison",
|
|
100
|
+
"blade",
|
|
101
|
+
"blade.php",
|
|
102
|
+
"blp",
|
|
103
|
+
"bmx",
|
|
104
|
+
"bones",
|
|
105
|
+
"boo",
|
|
106
|
+
"boot",
|
|
107
|
+
"bpl",
|
|
108
|
+
"bqn",
|
|
109
|
+
"brd",
|
|
110
|
+
"bro",
|
|
111
|
+
"brs",
|
|
112
|
+
"bru",
|
|
113
|
+
"bs",
|
|
114
|
+
"bsl",
|
|
115
|
+
"bst",
|
|
116
|
+
"bsv",
|
|
117
|
+
"builder",
|
|
118
|
+
"builds",
|
|
119
|
+
"bzl",
|
|
120
|
+
"c",
|
|
121
|
+
"c++",
|
|
122
|
+
"c++-objdump",
|
|
123
|
+
"c++objdump",
|
|
124
|
+
"c-objdump",
|
|
125
|
+
"c3",
|
|
126
|
+
"cabal",
|
|
127
|
+
"caddyfile",
|
|
128
|
+
"cairo",
|
|
129
|
+
"cake",
|
|
130
|
+
"capnp",
|
|
131
|
+
"carbon",
|
|
132
|
+
"cats",
|
|
133
|
+
"cbl",
|
|
134
|
+
"cbx",
|
|
135
|
+
"cc",
|
|
136
|
+
"ccp",
|
|
137
|
+
"ccproj",
|
|
138
|
+
"ccxml",
|
|
139
|
+
"cdc",
|
|
140
|
+
"cdf",
|
|
141
|
+
"cds",
|
|
142
|
+
"ceylon",
|
|
143
|
+
"cfc",
|
|
144
|
+
"cfg",
|
|
145
|
+
"cfm",
|
|
146
|
+
"cfml",
|
|
147
|
+
"cgi",
|
|
148
|
+
"cginc",
|
|
149
|
+
"ch",
|
|
150
|
+
"chem",
|
|
151
|
+
"chpl",
|
|
152
|
+
"chs",
|
|
153
|
+
"cil",
|
|
154
|
+
"circom",
|
|
155
|
+
"cirru",
|
|
156
|
+
"cj",
|
|
157
|
+
"cjs",
|
|
158
|
+
"cjsx",
|
|
159
|
+
"ck",
|
|
160
|
+
"cl",
|
|
161
|
+
"cl2",
|
|
162
|
+
"clar",
|
|
163
|
+
"click",
|
|
164
|
+
"clixml",
|
|
165
|
+
"clj",
|
|
166
|
+
"cljc",
|
|
167
|
+
"cljs",
|
|
168
|
+
"cljs.hl",
|
|
169
|
+
"cljscm",
|
|
170
|
+
"cljx",
|
|
171
|
+
"clp",
|
|
172
|
+
"cls",
|
|
173
|
+
"clue",
|
|
174
|
+
"clw",
|
|
175
|
+
"cmake",
|
|
176
|
+
"cmake.in",
|
|
177
|
+
"cmd",
|
|
178
|
+
"cmp",
|
|
179
|
+
"cnc",
|
|
180
|
+
"cnf",
|
|
181
|
+
"cob",
|
|
182
|
+
"cobol",
|
|
183
|
+
"cocci",
|
|
184
|
+
"code-snippets",
|
|
185
|
+
"code-workspace",
|
|
186
|
+
"coffee",
|
|
187
|
+
"coffee.md",
|
|
188
|
+
"com",
|
|
189
|
+
"command",
|
|
190
|
+
"conll",
|
|
191
|
+
"conllu",
|
|
192
|
+
"container",
|
|
193
|
+
"containerfile",
|
|
194
|
+
"cook",
|
|
195
|
+
"coq",
|
|
196
|
+
"cp",
|
|
197
|
+
"cpp",
|
|
198
|
+
"cpp-objdump",
|
|
199
|
+
"cppm",
|
|
200
|
+
"cppobjdump",
|
|
201
|
+
"cproject",
|
|
202
|
+
"cps",
|
|
203
|
+
"cpy",
|
|
204
|
+
"cql",
|
|
205
|
+
"cr",
|
|
206
|
+
"crc32",
|
|
207
|
+
"creole",
|
|
208
|
+
"cs",
|
|
209
|
+
"cs.pp",
|
|
210
|
+
"csc",
|
|
211
|
+
"cscfg",
|
|
212
|
+
"csd",
|
|
213
|
+
"csdef",
|
|
214
|
+
"csh",
|
|
215
|
+
"cshtml",
|
|
216
|
+
"csl",
|
|
217
|
+
"cson",
|
|
218
|
+
"csproj",
|
|
219
|
+
"css",
|
|
220
|
+
"csv",
|
|
221
|
+
"csx",
|
|
222
|
+
"ct",
|
|
223
|
+
"ctl",
|
|
224
|
+
"ctp",
|
|
225
|
+
"cts",
|
|
226
|
+
"cu",
|
|
227
|
+
"cue",
|
|
228
|
+
"cuh",
|
|
229
|
+
"curry",
|
|
230
|
+
"cw",
|
|
231
|
+
"cwl",
|
|
232
|
+
"cxx",
|
|
233
|
+
"cxx-objdump",
|
|
234
|
+
"cy",
|
|
235
|
+
"cylc",
|
|
236
|
+
"cyp",
|
|
237
|
+
"cypher",
|
|
238
|
+
"d",
|
|
239
|
+
"d-objdump",
|
|
240
|
+
"d2",
|
|
241
|
+
"dae",
|
|
242
|
+
"darcspatch",
|
|
243
|
+
"dart",
|
|
244
|
+
"das",
|
|
245
|
+
"dats",
|
|
246
|
+
"db2",
|
|
247
|
+
"dcl",
|
|
248
|
+
"ddl",
|
|
249
|
+
"decls",
|
|
250
|
+
"depproj",
|
|
251
|
+
"desktop",
|
|
252
|
+
"desktop.in",
|
|
253
|
+
"dfm",
|
|
254
|
+
"dfy",
|
|
255
|
+
"dhall",
|
|
256
|
+
"di",
|
|
257
|
+
"diff",
|
|
258
|
+
"dircolors",
|
|
259
|
+
"dita",
|
|
260
|
+
"ditamap",
|
|
261
|
+
"ditaval",
|
|
262
|
+
"djs",
|
|
263
|
+
"dll.config",
|
|
264
|
+
"dlm",
|
|
265
|
+
"dm",
|
|
266
|
+
"do",
|
|
267
|
+
"dockerfile",
|
|
268
|
+
"dof",
|
|
269
|
+
"doh",
|
|
270
|
+
"dot",
|
|
271
|
+
"dotsettings",
|
|
272
|
+
"dpatch",
|
|
273
|
+
"dpr",
|
|
274
|
+
"druby",
|
|
275
|
+
"dsc",
|
|
276
|
+
"dsl",
|
|
277
|
+
"dsp",
|
|
278
|
+
"dsr",
|
|
279
|
+
"dtx",
|
|
280
|
+
"duby",
|
|
281
|
+
"dwl",
|
|
282
|
+
"dyalog",
|
|
283
|
+
"dyl",
|
|
284
|
+
"dylan",
|
|
285
|
+
"dzn",
|
|
286
|
+
"e",
|
|
287
|
+
"eam.fs",
|
|
288
|
+
"eb",
|
|
289
|
+
"ebnf",
|
|
290
|
+
"ebuild",
|
|
291
|
+
"ec",
|
|
292
|
+
"ecl",
|
|
293
|
+
"eclass",
|
|
294
|
+
"eclxml",
|
|
295
|
+
"ecr",
|
|
296
|
+
"ect",
|
|
297
|
+
"edc",
|
|
298
|
+
"edge",
|
|
299
|
+
"edgeql",
|
|
300
|
+
"editorconfig",
|
|
301
|
+
"edn",
|
|
302
|
+
"eh",
|
|
303
|
+
"ejs",
|
|
304
|
+
"ejs.t",
|
|
305
|
+
"el",
|
|
306
|
+
"eliom",
|
|
307
|
+
"eliomi",
|
|
308
|
+
"elm",
|
|
309
|
+
"elv",
|
|
310
|
+
"em",
|
|
311
|
+
"emacs",
|
|
312
|
+
"emacs.desktop",
|
|
313
|
+
"emberscript",
|
|
314
|
+
"eml",
|
|
315
|
+
"env",
|
|
316
|
+
"epj",
|
|
317
|
+
"eps",
|
|
318
|
+
"epsi",
|
|
319
|
+
"eq",
|
|
320
|
+
"erb",
|
|
321
|
+
"erb.deface",
|
|
322
|
+
"erl",
|
|
323
|
+
"es",
|
|
324
|
+
"es6",
|
|
325
|
+
"escript",
|
|
326
|
+
"esdl",
|
|
327
|
+
"ex",
|
|
328
|
+
"exs",
|
|
329
|
+
"eye",
|
|
330
|
+
"f",
|
|
331
|
+
"f03",
|
|
332
|
+
"f08",
|
|
333
|
+
"f77",
|
|
334
|
+
"f90",
|
|
335
|
+
"f95",
|
|
336
|
+
"factor",
|
|
337
|
+
"fan",
|
|
338
|
+
"fancypack",
|
|
339
|
+
"fbs",
|
|
340
|
+
"fcgi",
|
|
341
|
+
"fea",
|
|
342
|
+
"feature",
|
|
343
|
+
"filters",
|
|
344
|
+
"fir",
|
|
345
|
+
"fish",
|
|
346
|
+
"flex",
|
|
347
|
+
"flf",
|
|
348
|
+
"flix",
|
|
349
|
+
"flux",
|
|
350
|
+
"fnc",
|
|
351
|
+
"fnl",
|
|
352
|
+
"for",
|
|
353
|
+
"forth",
|
|
354
|
+
"fp",
|
|
355
|
+
"fpp",
|
|
356
|
+
"fr",
|
|
357
|
+
"frag",
|
|
358
|
+
"frg",
|
|
359
|
+
"frm",
|
|
360
|
+
"frt",
|
|
361
|
+
"fs",
|
|
362
|
+
"fsh",
|
|
363
|
+
"fshader",
|
|
364
|
+
"fsi",
|
|
365
|
+
"fsproj",
|
|
366
|
+
"fst",
|
|
367
|
+
"fsti",
|
|
368
|
+
"fsx",
|
|
369
|
+
"fth",
|
|
370
|
+
"ftl",
|
|
371
|
+
"ftlh",
|
|
372
|
+
"fun",
|
|
373
|
+
"fut",
|
|
374
|
+
"fx",
|
|
375
|
+
"fxh",
|
|
376
|
+
"fxml",
|
|
377
|
+
"fy",
|
|
378
|
+
"g",
|
|
379
|
+
"g4",
|
|
380
|
+
"gaml",
|
|
381
|
+
"gap",
|
|
382
|
+
"gawk",
|
|
383
|
+
"gbl",
|
|
384
|
+
"gbo",
|
|
385
|
+
"gbp",
|
|
386
|
+
"gbr",
|
|
387
|
+
"gbs",
|
|
388
|
+
"gco",
|
|
389
|
+
"gcode",
|
|
390
|
+
"gd",
|
|
391
|
+
"gdb",
|
|
392
|
+
"gdbinit",
|
|
393
|
+
"gdnlib",
|
|
394
|
+
"gdns",
|
|
395
|
+
"gdshader",
|
|
396
|
+
"gdshaderinc",
|
|
397
|
+
"ged",
|
|
398
|
+
"gemspec",
|
|
399
|
+
"geo",
|
|
400
|
+
"geojson",
|
|
401
|
+
"geom",
|
|
402
|
+
"gf",
|
|
403
|
+
"gi",
|
|
404
|
+
"gitconfig",
|
|
405
|
+
"gitignore",
|
|
406
|
+
"gjs",
|
|
407
|
+
"gko",
|
|
408
|
+
"glade",
|
|
409
|
+
"gleam",
|
|
410
|
+
"glf",
|
|
411
|
+
"glsl",
|
|
412
|
+
"glslf",
|
|
413
|
+
"glslv",
|
|
414
|
+
"gltf",
|
|
415
|
+
"glyphs",
|
|
416
|
+
"gmi",
|
|
417
|
+
"gml",
|
|
418
|
+
"gms",
|
|
419
|
+
"gmx",
|
|
420
|
+
"gn",
|
|
421
|
+
"gni",
|
|
422
|
+
"gnu",
|
|
423
|
+
"gnuplot",
|
|
424
|
+
"go",
|
|
425
|
+
"god",
|
|
426
|
+
"gohtml",
|
|
427
|
+
"golo",
|
|
428
|
+
"gotmpl",
|
|
429
|
+
"gp",
|
|
430
|
+
"gpb",
|
|
431
|
+
"gpt",
|
|
432
|
+
"gpx",
|
|
433
|
+
"gql",
|
|
434
|
+
"grace",
|
|
435
|
+
"gradle",
|
|
436
|
+
"gradle.kts",
|
|
437
|
+
"graphql",
|
|
438
|
+
"graphqls",
|
|
439
|
+
"groovy",
|
|
440
|
+
"grt",
|
|
441
|
+
"grxml",
|
|
442
|
+
"gs",
|
|
443
|
+
"gsc",
|
|
444
|
+
"gsh",
|
|
445
|
+
"gshader",
|
|
446
|
+
"gsp",
|
|
447
|
+
"gst",
|
|
448
|
+
"gsx",
|
|
449
|
+
"gtkrc",
|
|
450
|
+
"gtl",
|
|
451
|
+
"gto",
|
|
452
|
+
"gtp",
|
|
453
|
+
"gtpl",
|
|
454
|
+
"gts",
|
|
455
|
+
"gv",
|
|
456
|
+
"gvy",
|
|
457
|
+
"gyp",
|
|
458
|
+
"gypi",
|
|
459
|
+
"h",
|
|
460
|
+
"h++",
|
|
461
|
+
"h.in",
|
|
462
|
+
"ha",
|
|
463
|
+
"hack",
|
|
464
|
+
"haml",
|
|
465
|
+
"haml.deface",
|
|
466
|
+
"handlebars",
|
|
467
|
+
"har",
|
|
468
|
+
"hats",
|
|
469
|
+
"hb",
|
|
470
|
+
"hbs",
|
|
471
|
+
"hc",
|
|
472
|
+
"hcl",
|
|
473
|
+
"heex",
|
|
474
|
+
"hh",
|
|
475
|
+
"hhi",
|
|
476
|
+
"hic",
|
|
477
|
+
"hip",
|
|
478
|
+
"hlean",
|
|
479
|
+
"hlsl",
|
|
480
|
+
"hlsli",
|
|
481
|
+
"hocon",
|
|
482
|
+
"hoon",
|
|
483
|
+
"hpp",
|
|
484
|
+
"hqf",
|
|
485
|
+
"hql",
|
|
486
|
+
"hrl",
|
|
487
|
+
"hs",
|
|
488
|
+
"hs-boot",
|
|
489
|
+
"hsc",
|
|
490
|
+
"hta",
|
|
491
|
+
"htm",
|
|
492
|
+
"html",
|
|
493
|
+
"html.eex",
|
|
494
|
+
"html.hl",
|
|
495
|
+
"html.tmpl",
|
|
496
|
+
"http",
|
|
497
|
+
"hurl",
|
|
498
|
+
"hx",
|
|
499
|
+
"hxml",
|
|
500
|
+
"hxsl",
|
|
501
|
+
"hxx",
|
|
502
|
+
"hy",
|
|
503
|
+
"hzp",
|
|
504
|
+
"i",
|
|
505
|
+
"i3",
|
|
506
|
+
"i7x",
|
|
507
|
+
"ical",
|
|
508
|
+
"ice",
|
|
509
|
+
"iced",
|
|
510
|
+
"icl",
|
|
511
|
+
"icls",
|
|
512
|
+
"ics",
|
|
513
|
+
"idc",
|
|
514
|
+
"idr",
|
|
515
|
+
"ig",
|
|
516
|
+
"ihlp",
|
|
517
|
+
"ijm",
|
|
518
|
+
"ijs",
|
|
519
|
+
"ik",
|
|
520
|
+
"il",
|
|
521
|
+
"ily",
|
|
522
|
+
"imba",
|
|
523
|
+
"iml",
|
|
524
|
+
"inc",
|
|
525
|
+
"ini",
|
|
526
|
+
"ink",
|
|
527
|
+
"inl",
|
|
528
|
+
"ino",
|
|
529
|
+
"ins",
|
|
530
|
+
"intr",
|
|
531
|
+
"io",
|
|
532
|
+
"iol",
|
|
533
|
+
"ipf",
|
|
534
|
+
"ipp",
|
|
535
|
+
"ipynb",
|
|
536
|
+
"irclog",
|
|
537
|
+
"isl",
|
|
538
|
+
"ispc",
|
|
539
|
+
"iss",
|
|
540
|
+
"iuml",
|
|
541
|
+
"ivy",
|
|
542
|
+
"ixx",
|
|
543
|
+
"j",
|
|
544
|
+
"j2",
|
|
545
|
+
"jac",
|
|
546
|
+
"jade",
|
|
547
|
+
"jai",
|
|
548
|
+
"jake",
|
|
549
|
+
"janet",
|
|
550
|
+
"jav",
|
|
551
|
+
"java",
|
|
552
|
+
"javascript",
|
|
553
|
+
"jbuilder",
|
|
554
|
+
"jcl",
|
|
555
|
+
"jelly",
|
|
556
|
+
"jflex",
|
|
557
|
+
"jinja",
|
|
558
|
+
"jinja2",
|
|
559
|
+
"jison",
|
|
560
|
+
"jisonlex",
|
|
561
|
+
"jl",
|
|
562
|
+
"jq",
|
|
563
|
+
"js",
|
|
564
|
+
"js.erb",
|
|
565
|
+
"jsb",
|
|
566
|
+
"jscad",
|
|
567
|
+
"jsfl",
|
|
568
|
+
"jsh",
|
|
569
|
+
"jslib",
|
|
570
|
+
"jsm",
|
|
571
|
+
"json",
|
|
572
|
+
"json-tmlanguage",
|
|
573
|
+
"json.example",
|
|
574
|
+
"json5",
|
|
575
|
+
"jsonc",
|
|
576
|
+
"jsonl",
|
|
577
|
+
"jsonld",
|
|
578
|
+
"jsonnet",
|
|
579
|
+
"jsp",
|
|
580
|
+
"jspre",
|
|
581
|
+
"jsproj",
|
|
582
|
+
"jss",
|
|
583
|
+
"jst",
|
|
584
|
+
"jsx",
|
|
585
|
+
"jte",
|
|
586
|
+
"just",
|
|
587
|
+
"k",
|
|
588
|
+
"kak",
|
|
589
|
+
"kdl",
|
|
590
|
+
"kicad_mod",
|
|
591
|
+
"kicad_pcb",
|
|
592
|
+
"kicad_sch",
|
|
593
|
+
"kicad_sym",
|
|
594
|
+
"kicad_wks",
|
|
595
|
+
"kid",
|
|
596
|
+
"kit",
|
|
597
|
+
"kk",
|
|
598
|
+
"kml",
|
|
599
|
+
"kojo",
|
|
600
|
+
"kql",
|
|
601
|
+
"krl",
|
|
602
|
+
"ks",
|
|
603
|
+
"ksh",
|
|
604
|
+
"ksy",
|
|
605
|
+
"kt",
|
|
606
|
+
"ktm",
|
|
607
|
+
"kts",
|
|
608
|
+
"kv",
|
|
609
|
+
"l",
|
|
610
|
+
"lagda",
|
|
611
|
+
"langium",
|
|
612
|
+
"lark",
|
|
613
|
+
"las",
|
|
614
|
+
"lasso",
|
|
615
|
+
"lasso8",
|
|
616
|
+
"lasso9",
|
|
617
|
+
"latte",
|
|
618
|
+
"launch",
|
|
619
|
+
"lbx",
|
|
620
|
+
"ld",
|
|
621
|
+
"lds",
|
|
622
|
+
"lean",
|
|
623
|
+
"leex",
|
|
624
|
+
"lektorproject",
|
|
625
|
+
"leo",
|
|
626
|
+
"less",
|
|
627
|
+
"lex",
|
|
628
|
+
"lfe",
|
|
629
|
+
"lgt",
|
|
630
|
+
"lhs",
|
|
631
|
+
"libsonnet",
|
|
632
|
+
"lid",
|
|
633
|
+
"lidr",
|
|
634
|
+
"ligo",
|
|
635
|
+
"linq",
|
|
636
|
+
"liq",
|
|
637
|
+
"liquid",
|
|
638
|
+
"lisp",
|
|
639
|
+
"litcoffee",
|
|
640
|
+
"livecodescript",
|
|
641
|
+
"livemd",
|
|
642
|
+
"lkml",
|
|
643
|
+
"ll",
|
|
644
|
+
"lmi",
|
|
645
|
+
"lock",
|
|
646
|
+
"lockb",
|
|
647
|
+
"logtalk",
|
|
648
|
+
"lol",
|
|
649
|
+
"lookml",
|
|
650
|
+
"lp",
|
|
651
|
+
"lpr",
|
|
652
|
+
"ls",
|
|
653
|
+
"lsl",
|
|
654
|
+
"lslp",
|
|
655
|
+
"lsp",
|
|
656
|
+
"ltx",
|
|
657
|
+
"lua",
|
|
658
|
+
"luau",
|
|
659
|
+
"lvclass",
|
|
660
|
+
"lvlib",
|
|
661
|
+
"lvproj",
|
|
662
|
+
"ly",
|
|
663
|
+
"m",
|
|
664
|
+
"m2",
|
|
665
|
+
"m3",
|
|
666
|
+
"m3u",
|
|
667
|
+
"m3u8",
|
|
668
|
+
"m4",
|
|
669
|
+
"ma",
|
|
670
|
+
"mak",
|
|
671
|
+
"make",
|
|
672
|
+
"makefile",
|
|
673
|
+
"mako",
|
|
674
|
+
"man",
|
|
675
|
+
"mao",
|
|
676
|
+
"markdown",
|
|
677
|
+
"marko",
|
|
678
|
+
"mask",
|
|
679
|
+
"mat",
|
|
680
|
+
"mata",
|
|
681
|
+
"matah",
|
|
682
|
+
"mathematica",
|
|
683
|
+
"matlab",
|
|
684
|
+
"mawk",
|
|
685
|
+
"maxhelp",
|
|
686
|
+
"maxpat",
|
|
687
|
+
"maxproj",
|
|
688
|
+
"mbox",
|
|
689
|
+
"mbt",
|
|
690
|
+
"mc",
|
|
691
|
+
"mcfunction",
|
|
692
|
+
"mch",
|
|
693
|
+
"mcmeta",
|
|
694
|
+
"mcr",
|
|
695
|
+
"md",
|
|
696
|
+
"md2",
|
|
697
|
+
"md4",
|
|
698
|
+
"md5",
|
|
699
|
+
"mdoc",
|
|
700
|
+
"mdown",
|
|
701
|
+
"mdpolicy",
|
|
702
|
+
"mdwn",
|
|
703
|
+
"mdx",
|
|
704
|
+
"me",
|
|
705
|
+
"mediawiki",
|
|
706
|
+
"mermaid",
|
|
707
|
+
"meta",
|
|
708
|
+
"metal",
|
|
709
|
+
"metta",
|
|
710
|
+
"mg",
|
|
711
|
+
"minid",
|
|
712
|
+
"mint",
|
|
713
|
+
"mir",
|
|
714
|
+
"mirah",
|
|
715
|
+
"mjml",
|
|
716
|
+
"mjs",
|
|
717
|
+
"mk",
|
|
718
|
+
"mkd",
|
|
719
|
+
"mkdn",
|
|
720
|
+
"mkdown",
|
|
721
|
+
"mkfile",
|
|
722
|
+
"mkii",
|
|
723
|
+
"mkiv",
|
|
724
|
+
"mkvi",
|
|
725
|
+
"ml",
|
|
726
|
+
"ml4",
|
|
727
|
+
"mli",
|
|
728
|
+
"mligo",
|
|
729
|
+
"mlir",
|
|
730
|
+
"mll",
|
|
731
|
+
"mly",
|
|
732
|
+
"mm",
|
|
733
|
+
"mmd",
|
|
734
|
+
"mmk",
|
|
735
|
+
"mms",
|
|
736
|
+
"mo",
|
|
737
|
+
"mod",
|
|
738
|
+
"mojo",
|
|
739
|
+
"monkey",
|
|
740
|
+
"monkey2",
|
|
741
|
+
"moo",
|
|
742
|
+
"moon",
|
|
743
|
+
"mount",
|
|
744
|
+
"move",
|
|
745
|
+
"mpl",
|
|
746
|
+
"mps",
|
|
747
|
+
"mq4",
|
|
748
|
+
"mq5",
|
|
749
|
+
"mqh",
|
|
750
|
+
"mrc",
|
|
751
|
+
"ms",
|
|
752
|
+
"msd",
|
|
753
|
+
"msg",
|
|
754
|
+
"mspec",
|
|
755
|
+
"mss",
|
|
756
|
+
"mt",
|
|
757
|
+
"mtl",
|
|
758
|
+
"mtml",
|
|
759
|
+
"mts",
|
|
760
|
+
"mu",
|
|
761
|
+
"mud",
|
|
762
|
+
"muf",
|
|
763
|
+
"mumps",
|
|
764
|
+
"muse",
|
|
765
|
+
"mustache",
|
|
766
|
+
"mxml",
|
|
767
|
+
"mxt",
|
|
768
|
+
"mysql",
|
|
769
|
+
"myt",
|
|
770
|
+
"mzn",
|
|
771
|
+
"n",
|
|
772
|
+
"nanorc",
|
|
773
|
+
"nas",
|
|
774
|
+
"nasl",
|
|
775
|
+
"nasm",
|
|
776
|
+
"natvis",
|
|
777
|
+
"nawk",
|
|
778
|
+
"nb",
|
|
779
|
+
"nbp",
|
|
780
|
+
"nc",
|
|
781
|
+
"ncl",
|
|
782
|
+
"ndproj",
|
|
783
|
+
"ne",
|
|
784
|
+
"nearley",
|
|
785
|
+
"ned",
|
|
786
|
+
"neon",
|
|
787
|
+
"network",
|
|
788
|
+
"nf",
|
|
789
|
+
"nginx",
|
|
790
|
+
"nginxconf",
|
|
791
|
+
"ni",
|
|
792
|
+
"nim",
|
|
793
|
+
"nim.cfg",
|
|
794
|
+
"nimble",
|
|
795
|
+
"nimrod",
|
|
796
|
+
"nims",
|
|
797
|
+
"ninja",
|
|
798
|
+
"nit",
|
|
799
|
+
"nix",
|
|
800
|
+
"njk",
|
|
801
|
+
"njs",
|
|
802
|
+
"nl",
|
|
803
|
+
"nlogo",
|
|
804
|
+
"no",
|
|
805
|
+
"nomad",
|
|
806
|
+
"nproj",
|
|
807
|
+
"nqp",
|
|
808
|
+
"nr",
|
|
809
|
+
"nse",
|
|
810
|
+
"nsh",
|
|
811
|
+
"nsi",
|
|
812
|
+
"nss",
|
|
813
|
+
"nu",
|
|
814
|
+
"numpy",
|
|
815
|
+
"numpyw",
|
|
816
|
+
"numsc",
|
|
817
|
+
"nuspec",
|
|
818
|
+
"nut",
|
|
819
|
+
"ny",
|
|
820
|
+
"ob2",
|
|
821
|
+
"obj",
|
|
822
|
+
"objdump",
|
|
823
|
+
"odd",
|
|
824
|
+
"odin",
|
|
825
|
+
"ol",
|
|
826
|
+
"omgrofl",
|
|
827
|
+
"ooc",
|
|
828
|
+
"opa",
|
|
829
|
+
"opal",
|
|
830
|
+
"opencl",
|
|
831
|
+
"opy",
|
|
832
|
+
"orc",
|
|
833
|
+
"org",
|
|
834
|
+
"os",
|
|
835
|
+
"osm",
|
|
836
|
+
"outjob",
|
|
837
|
+
"overpassql",
|
|
838
|
+
"owl",
|
|
839
|
+
"ox",
|
|
840
|
+
"oxh",
|
|
841
|
+
"oxo",
|
|
842
|
+
"oxygene",
|
|
843
|
+
"oz",
|
|
844
|
+
"p",
|
|
845
|
+
"p4",
|
|
846
|
+
"p6",
|
|
847
|
+
"p6l",
|
|
848
|
+
"p6m",
|
|
849
|
+
"p8",
|
|
850
|
+
"pac",
|
|
851
|
+
"pact",
|
|
852
|
+
"pan",
|
|
853
|
+
"parrot",
|
|
854
|
+
"pas",
|
|
855
|
+
"pascal",
|
|
856
|
+
"pasm",
|
|
857
|
+
"pat",
|
|
858
|
+
"patch",
|
|
859
|
+
"pb",
|
|
860
|
+
"pbi",
|
|
861
|
+
"pbt",
|
|
862
|
+
"pbtxt",
|
|
863
|
+
"pc",
|
|
864
|
+
"pc.in",
|
|
865
|
+
"pcbdoc",
|
|
866
|
+
"pck",
|
|
867
|
+
"pcss",
|
|
868
|
+
"pd",
|
|
869
|
+
"pd_lua",
|
|
870
|
+
"pddl",
|
|
871
|
+
"pde",
|
|
872
|
+
"peggy",
|
|
873
|
+
"pegjs",
|
|
874
|
+
"pep",
|
|
875
|
+
"per",
|
|
876
|
+
"perl",
|
|
877
|
+
"pfa",
|
|
878
|
+
"pgsql",
|
|
879
|
+
"ph",
|
|
880
|
+
"php",
|
|
881
|
+
"php3",
|
|
882
|
+
"php4",
|
|
883
|
+
"php5",
|
|
884
|
+
"phps",
|
|
885
|
+
"phpt",
|
|
886
|
+
"phtml",
|
|
887
|
+
"pic",
|
|
888
|
+
"pig",
|
|
889
|
+
"pike",
|
|
890
|
+
"pir",
|
|
891
|
+
"pkb",
|
|
892
|
+
"pkgproj",
|
|
893
|
+
"pkl",
|
|
894
|
+
"pks",
|
|
895
|
+
"pl",
|
|
896
|
+
"pl6",
|
|
897
|
+
"plantuml",
|
|
898
|
+
"plb",
|
|
899
|
+
"plist",
|
|
900
|
+
"plot",
|
|
901
|
+
"pls",
|
|
902
|
+
"plsql",
|
|
903
|
+
"plt",
|
|
904
|
+
"pluginspec",
|
|
905
|
+
"plx",
|
|
906
|
+
"pm",
|
|
907
|
+
"pm6",
|
|
908
|
+
"pml",
|
|
909
|
+
"pmod",
|
|
910
|
+
"po",
|
|
911
|
+
"pod",
|
|
912
|
+
"pod6",
|
|
913
|
+
"podsl",
|
|
914
|
+
"podspec",
|
|
915
|
+
"pogo",
|
|
916
|
+
"polar",
|
|
917
|
+
"pony",
|
|
918
|
+
"por",
|
|
919
|
+
"postcss",
|
|
920
|
+
"pot",
|
|
921
|
+
"pov",
|
|
922
|
+
"pp",
|
|
923
|
+
"pprx",
|
|
924
|
+
"pq",
|
|
925
|
+
"praat",
|
|
926
|
+
"prawn",
|
|
927
|
+
"prc",
|
|
928
|
+
"prefab",
|
|
929
|
+
"prefs",
|
|
930
|
+
"prg",
|
|
931
|
+
"pri",
|
|
932
|
+
"prisma",
|
|
933
|
+
"prjpcb",
|
|
934
|
+
"pro",
|
|
935
|
+
"proj",
|
|
936
|
+
"prolog",
|
|
937
|
+
"properties",
|
|
938
|
+
"props",
|
|
939
|
+
"proto",
|
|
940
|
+
"prw",
|
|
941
|
+
"ps",
|
|
942
|
+
"ps1",
|
|
943
|
+
"ps1xml",
|
|
944
|
+
"psc",
|
|
945
|
+
"psc1",
|
|
946
|
+
"psd1",
|
|
947
|
+
"psgi",
|
|
948
|
+
"psm1",
|
|
949
|
+
"pt",
|
|
950
|
+
"pub",
|
|
951
|
+
"pubxml",
|
|
952
|
+
"pug",
|
|
953
|
+
"puml",
|
|
954
|
+
"purs",
|
|
955
|
+
"pwn",
|
|
956
|
+
"pxd",
|
|
957
|
+
"pxi",
|
|
958
|
+
"py",
|
|
959
|
+
"py3",
|
|
960
|
+
"pyde",
|
|
961
|
+
"pyi",
|
|
962
|
+
"pyp",
|
|
963
|
+
"pyt",
|
|
964
|
+
"pytb",
|
|
965
|
+
"pyw",
|
|
966
|
+
"pyx",
|
|
967
|
+
"q",
|
|
968
|
+
"qasm",
|
|
969
|
+
"qbs",
|
|
970
|
+
"qc",
|
|
971
|
+
"qhelp",
|
|
972
|
+
"ql",
|
|
973
|
+
"qll",
|
|
974
|
+
"qmd",
|
|
975
|
+
"qml",
|
|
976
|
+
"qnt",
|
|
977
|
+
"qs",
|
|
978
|
+
"r",
|
|
979
|
+
"r2",
|
|
980
|
+
"r3",
|
|
981
|
+
"rabl",
|
|
982
|
+
"rake",
|
|
983
|
+
"raku",
|
|
984
|
+
"rakumod",
|
|
985
|
+
"raml",
|
|
986
|
+
"rascript",
|
|
987
|
+
"raw",
|
|
988
|
+
"razor",
|
|
989
|
+
"rb",
|
|
990
|
+
"rbbas",
|
|
991
|
+
"rbfrm",
|
|
992
|
+
"rbi",
|
|
993
|
+
"rbmnu",
|
|
994
|
+
"rbres",
|
|
995
|
+
"rbs",
|
|
996
|
+
"rbtbar",
|
|
997
|
+
"rbuild",
|
|
998
|
+
"rbuistate",
|
|
999
|
+
"rbw",
|
|
1000
|
+
"rbx",
|
|
1001
|
+
"rbxs",
|
|
1002
|
+
"rchit",
|
|
1003
|
+
"rd",
|
|
1004
|
+
"rdf",
|
|
1005
|
+
"rdoc",
|
|
1006
|
+
"re",
|
|
1007
|
+
"reb",
|
|
1008
|
+
"rebol",
|
|
1009
|
+
"red",
|
|
1010
|
+
"reds",
|
|
1011
|
+
"reek",
|
|
1012
|
+
"reg",
|
|
1013
|
+
"regex",
|
|
1014
|
+
"regexp",
|
|
1015
|
+
"rego",
|
|
1016
|
+
"rei",
|
|
1017
|
+
"religo",
|
|
1018
|
+
"res",
|
|
1019
|
+
"resi",
|
|
1020
|
+
"resource",
|
|
1021
|
+
"rest",
|
|
1022
|
+
"rest.txt",
|
|
1023
|
+
"resx",
|
|
1024
|
+
"rex",
|
|
1025
|
+
"rexx",
|
|
1026
|
+
"rg",
|
|
1027
|
+
"rhtml",
|
|
1028
|
+
"ring",
|
|
1029
|
+
"riot",
|
|
1030
|
+
"rkt",
|
|
1031
|
+
"rktd",
|
|
1032
|
+
"rktl",
|
|
1033
|
+
"rl",
|
|
1034
|
+
"rmd",
|
|
1035
|
+
"rmiss",
|
|
1036
|
+
"rnh",
|
|
1037
|
+
"rno",
|
|
1038
|
+
"rnw",
|
|
1039
|
+
"robot",
|
|
1040
|
+
"roc",
|
|
1041
|
+
"rockspec",
|
|
1042
|
+
"roff",
|
|
1043
|
+
"ron",
|
|
1044
|
+
"ronn",
|
|
1045
|
+
"rpgle",
|
|
1046
|
+
"rpy",
|
|
1047
|
+
"rq",
|
|
1048
|
+
"rs",
|
|
1049
|
+
"rs.in",
|
|
1050
|
+
"rsc",
|
|
1051
|
+
"rsh",
|
|
1052
|
+
"rss",
|
|
1053
|
+
"rst",
|
|
1054
|
+
"rst.txt",
|
|
1055
|
+
"rsx",
|
|
1056
|
+
"rtf",
|
|
1057
|
+
"ru",
|
|
1058
|
+
"ruby",
|
|
1059
|
+
"rviz",
|
|
1060
|
+
"s",
|
|
1061
|
+
"sage",
|
|
1062
|
+
"sagews",
|
|
1063
|
+
"sail",
|
|
1064
|
+
"sarif",
|
|
1065
|
+
"sas",
|
|
1066
|
+
"sass",
|
|
1067
|
+
"sats",
|
|
1068
|
+
"sbatch",
|
|
1069
|
+
"sbt",
|
|
1070
|
+
"sc",
|
|
1071
|
+
"scad",
|
|
1072
|
+
"scala",
|
|
1073
|
+
"scaml",
|
|
1074
|
+
"scd",
|
|
1075
|
+
"sce",
|
|
1076
|
+
"scenic",
|
|
1077
|
+
"sch",
|
|
1078
|
+
"schdoc",
|
|
1079
|
+
"sci",
|
|
1080
|
+
"scm",
|
|
1081
|
+
"sco",
|
|
1082
|
+
"scpt",
|
|
1083
|
+
"scrbl",
|
|
1084
|
+
"scss",
|
|
1085
|
+
"scxml",
|
|
1086
|
+
"sdc",
|
|
1087
|
+
"sed",
|
|
1088
|
+
"self",
|
|
1089
|
+
"service",
|
|
1090
|
+
"sexp",
|
|
1091
|
+
"sfd",
|
|
1092
|
+
"sfproj",
|
|
1093
|
+
"sfv",
|
|
1094
|
+
"sh",
|
|
1095
|
+
"sh-session",
|
|
1096
|
+
"sh.in",
|
|
1097
|
+
"sha1",
|
|
1098
|
+
"sha2",
|
|
1099
|
+
"sha224",
|
|
1100
|
+
"sha256",
|
|
1101
|
+
"sha256sum",
|
|
1102
|
+
"sha3",
|
|
1103
|
+
"sha384",
|
|
1104
|
+
"sha512",
|
|
1105
|
+
"shader",
|
|
1106
|
+
"shen",
|
|
1107
|
+
"shproj",
|
|
1108
|
+
"sieve",
|
|
1109
|
+
"sig",
|
|
1110
|
+
"sj",
|
|
1111
|
+
"sjs",
|
|
1112
|
+
"sl",
|
|
1113
|
+
"slang",
|
|
1114
|
+
"sld",
|
|
1115
|
+
"slim",
|
|
1116
|
+
"slint",
|
|
1117
|
+
"sln",
|
|
1118
|
+
"slnlaunch",
|
|
1119
|
+
"slnx",
|
|
1120
|
+
"sls",
|
|
1121
|
+
"slurm",
|
|
1122
|
+
"sma",
|
|
1123
|
+
"smali",
|
|
1124
|
+
"smithy",
|
|
1125
|
+
"smk",
|
|
1126
|
+
"sml",
|
|
1127
|
+
"smt",
|
|
1128
|
+
"smt2",
|
|
1129
|
+
"snakefile",
|
|
1130
|
+
"snap",
|
|
1131
|
+
"snip",
|
|
1132
|
+
"snippet",
|
|
1133
|
+
"snippets",
|
|
1134
|
+
"socket",
|
|
1135
|
+
"sol",
|
|
1136
|
+
"soy",
|
|
1137
|
+
"sp",
|
|
1138
|
+
"sparql",
|
|
1139
|
+
"spc",
|
|
1140
|
+
"spec",
|
|
1141
|
+
"spin",
|
|
1142
|
+
"sps",
|
|
1143
|
+
"sqf",
|
|
1144
|
+
"sql",
|
|
1145
|
+
"sqlrpgle",
|
|
1146
|
+
"sra",
|
|
1147
|
+
"srdf",
|
|
1148
|
+
"srt",
|
|
1149
|
+
"sru",
|
|
1150
|
+
"srv",
|
|
1151
|
+
"srw",
|
|
1152
|
+
"ss",
|
|
1153
|
+
"ssjs",
|
|
1154
|
+
"sss",
|
|
1155
|
+
"st",
|
|
1156
|
+
"stan",
|
|
1157
|
+
"star",
|
|
1158
|
+
"sthlp",
|
|
1159
|
+
"stl",
|
|
1160
|
+
"ston",
|
|
1161
|
+
"story",
|
|
1162
|
+
"storyboard",
|
|
1163
|
+
"sttheme",
|
|
1164
|
+
"sty",
|
|
1165
|
+
"styl",
|
|
1166
|
+
"sublime-build",
|
|
1167
|
+
"sublime-color-scheme",
|
|
1168
|
+
"sublime-commands",
|
|
1169
|
+
"sublime-completions",
|
|
1170
|
+
"sublime-keymap",
|
|
1171
|
+
"sublime-macro",
|
|
1172
|
+
"sublime-menu",
|
|
1173
|
+
"sublime-mousemap",
|
|
1174
|
+
"sublime-project",
|
|
1175
|
+
"sublime-settings",
|
|
1176
|
+
"sublime-snippet",
|
|
1177
|
+
"sublime-syntax",
|
|
1178
|
+
"sublime-theme",
|
|
1179
|
+
"sublime-workspace",
|
|
1180
|
+
"sublime_metrics",
|
|
1181
|
+
"sublime_session",
|
|
1182
|
+
"sum",
|
|
1183
|
+
"surql",
|
|
1184
|
+
"sv",
|
|
1185
|
+
"svelte",
|
|
1186
|
+
"svg",
|
|
1187
|
+
"svh",
|
|
1188
|
+
"svx",
|
|
1189
|
+
"sw",
|
|
1190
|
+
"swg",
|
|
1191
|
+
"swift",
|
|
1192
|
+
"swig",
|
|
1193
|
+
"syntax",
|
|
1194
|
+
"t",
|
|
1195
|
+
"tab",
|
|
1196
|
+
"tac",
|
|
1197
|
+
"tact",
|
|
1198
|
+
"tag",
|
|
1199
|
+
"talon",
|
|
1200
|
+
"target",
|
|
1201
|
+
"targets",
|
|
1202
|
+
"tcc",
|
|
1203
|
+
"tcl",
|
|
1204
|
+
"tcl.in",
|
|
1205
|
+
"tcsh",
|
|
1206
|
+
"te",
|
|
1207
|
+
"tea",
|
|
1208
|
+
"templ",
|
|
1209
|
+
"tesc",
|
|
1210
|
+
"tese",
|
|
1211
|
+
"tex",
|
|
1212
|
+
"texi",
|
|
1213
|
+
"texinfo",
|
|
1214
|
+
"textgrid",
|
|
1215
|
+
"textile",
|
|
1216
|
+
"textproto",
|
|
1217
|
+
"tf",
|
|
1218
|
+
"tfstate",
|
|
1219
|
+
"tfstate.backup",
|
|
1220
|
+
"tftpl",
|
|
1221
|
+
"tfvars",
|
|
1222
|
+
"thor",
|
|
1223
|
+
"thrift",
|
|
1224
|
+
"thy",
|
|
1225
|
+
"timer",
|
|
1226
|
+
"tl",
|
|
1227
|
+
"tla",
|
|
1228
|
+
"tlv",
|
|
1229
|
+
"tm",
|
|
1230
|
+
"tmac",
|
|
1231
|
+
"tmcommand",
|
|
1232
|
+
"tmdl",
|
|
1233
|
+
"tml",
|
|
1234
|
+
"tmlanguage",
|
|
1235
|
+
"tmpl",
|
|
1236
|
+
"tmpreferences",
|
|
1237
|
+
"tmsnippet",
|
|
1238
|
+
"tmtheme",
|
|
1239
|
+
"tmux",
|
|
1240
|
+
"toc",
|
|
1241
|
+
"tofu",
|
|
1242
|
+
"toit",
|
|
1243
|
+
"toml",
|
|
1244
|
+
"toml.example",
|
|
1245
|
+
"tool",
|
|
1246
|
+
"topojson",
|
|
1247
|
+
"tpb",
|
|
1248
|
+
"tpl",
|
|
1249
|
+
"tpp",
|
|
1250
|
+
"tps",
|
|
1251
|
+
"tres",
|
|
1252
|
+
"trg",
|
|
1253
|
+
"trigger",
|
|
1254
|
+
"ts",
|
|
1255
|
+
"tscn",
|
|
1256
|
+
"tsconfig.json",
|
|
1257
|
+
"tsp",
|
|
1258
|
+
"tst",
|
|
1259
|
+
"tsv",
|
|
1260
|
+
"tsx",
|
|
1261
|
+
"ttl",
|
|
1262
|
+
"tu",
|
|
1263
|
+
"twig",
|
|
1264
|
+
"txi",
|
|
1265
|
+
"txl",
|
|
1266
|
+
"txt",
|
|
1267
|
+
"txtpb",
|
|
1268
|
+
"txx",
|
|
1269
|
+
"typ",
|
|
1270
|
+
"uc",
|
|
1271
|
+
"udf",
|
|
1272
|
+
"udo",
|
|
1273
|
+
"ui",
|
|
1274
|
+
"unity",
|
|
1275
|
+
"uno",
|
|
1276
|
+
"upc",
|
|
1277
|
+
"uplc",
|
|
1278
|
+
"ur",
|
|
1279
|
+
"urdf",
|
|
1280
|
+
"url",
|
|
1281
|
+
"urs",
|
|
1282
|
+
"ux",
|
|
1283
|
+
"v",
|
|
1284
|
+
"vala",
|
|
1285
|
+
"vapi",
|
|
1286
|
+
"vark",
|
|
1287
|
+
"vb",
|
|
1288
|
+
"vba",
|
|
1289
|
+
"vbhtml",
|
|
1290
|
+
"vbproj",
|
|
1291
|
+
"vbs",
|
|
1292
|
+
"vcf",
|
|
1293
|
+
"vcl",
|
|
1294
|
+
"vcxproj",
|
|
1295
|
+
"vdf",
|
|
1296
|
+
"veo",
|
|
1297
|
+
"vert",
|
|
1298
|
+
"vh",
|
|
1299
|
+
"vhd",
|
|
1300
|
+
"vhdl",
|
|
1301
|
+
"vhf",
|
|
1302
|
+
"vhi",
|
|
1303
|
+
"vho",
|
|
1304
|
+
"vhost",
|
|
1305
|
+
"vhs",
|
|
1306
|
+
"vht",
|
|
1307
|
+
"vhw",
|
|
1308
|
+
"vim",
|
|
1309
|
+
"vimrc",
|
|
1310
|
+
"viw",
|
|
1311
|
+
"vmb",
|
|
1312
|
+
"vmf",
|
|
1313
|
+
"volt",
|
|
1314
|
+
"vrx",
|
|
1315
|
+
"vs",
|
|
1316
|
+
"vsh",
|
|
1317
|
+
"vshader",
|
|
1318
|
+
"vsixmanifest",
|
|
1319
|
+
"vssettings",
|
|
1320
|
+
"vstemplate",
|
|
1321
|
+
"vtl",
|
|
1322
|
+
"vto",
|
|
1323
|
+
"vtt",
|
|
1324
|
+
"vue",
|
|
1325
|
+
"vw",
|
|
1326
|
+
"vxml",
|
|
1327
|
+
"vy",
|
|
1328
|
+
"w",
|
|
1329
|
+
"wast",
|
|
1330
|
+
"wat",
|
|
1331
|
+
"watchr",
|
|
1332
|
+
"wdl",
|
|
1333
|
+
"webapp",
|
|
1334
|
+
"webidl",
|
|
1335
|
+
"webmanifest",
|
|
1336
|
+
"weechatlog",
|
|
1337
|
+
"wgsl",
|
|
1338
|
+
"whiley",
|
|
1339
|
+
"wiki",
|
|
1340
|
+
"wikitext",
|
|
1341
|
+
"wisp",
|
|
1342
|
+
"wit",
|
|
1343
|
+
"wixproj",
|
|
1344
|
+
"wl",
|
|
1345
|
+
"wlk",
|
|
1346
|
+
"wls",
|
|
1347
|
+
"wlt",
|
|
1348
|
+
"wlua",
|
|
1349
|
+
"workbook",
|
|
1350
|
+
"workflow",
|
|
1351
|
+
"wren",
|
|
1352
|
+
"ws",
|
|
1353
|
+
"wsdl",
|
|
1354
|
+
"wsf",
|
|
1355
|
+
"wsgi",
|
|
1356
|
+
"wxi",
|
|
1357
|
+
"wxl",
|
|
1358
|
+
"wxs",
|
|
1359
|
+
"x",
|
|
1360
|
+
"x10",
|
|
1361
|
+
"x3d",
|
|
1362
|
+
"x68",
|
|
1363
|
+
"xacro",
|
|
1364
|
+
"xaml",
|
|
1365
|
+
"xbm",
|
|
1366
|
+
"xc",
|
|
1367
|
+
"xdc",
|
|
1368
|
+
"xht",
|
|
1369
|
+
"xhtml",
|
|
1370
|
+
"xi",
|
|
1371
|
+
"xib",
|
|
1372
|
+
"xlf",
|
|
1373
|
+
"xliff",
|
|
1374
|
+
"xm",
|
|
1375
|
+
"xmi",
|
|
1376
|
+
"xml",
|
|
1377
|
+
"xml.dist",
|
|
1378
|
+
"xmp",
|
|
1379
|
+
"xojo_code",
|
|
1380
|
+
"xojo_menu",
|
|
1381
|
+
"xojo_report",
|
|
1382
|
+
"xojo_script",
|
|
1383
|
+
"xojo_toolbar",
|
|
1384
|
+
"xojo_window",
|
|
1385
|
+
"xpl",
|
|
1386
|
+
"xpm",
|
|
1387
|
+
"xproc",
|
|
1388
|
+
"xproj",
|
|
1389
|
+
"xpy",
|
|
1390
|
+
"xq",
|
|
1391
|
+
"xql",
|
|
1392
|
+
"xqm",
|
|
1393
|
+
"xquery",
|
|
1394
|
+
"xqy",
|
|
1395
|
+
"xrl",
|
|
1396
|
+
"xs",
|
|
1397
|
+
"xsd",
|
|
1398
|
+
"xsh",
|
|
1399
|
+
"xsjs",
|
|
1400
|
+
"xsjslib",
|
|
1401
|
+
"xsl",
|
|
1402
|
+
"xslt",
|
|
1403
|
+
"xsp-config",
|
|
1404
|
+
"xsp.metadata",
|
|
1405
|
+
"xspec",
|
|
1406
|
+
"xtend",
|
|
1407
|
+
"xul",
|
|
1408
|
+
"xzap",
|
|
1409
|
+
"y",
|
|
1410
|
+
"yacc",
|
|
1411
|
+
"yaml",
|
|
1412
|
+
"yaml-tmlanguage",
|
|
1413
|
+
"yaml.sed",
|
|
1414
|
+
"yang",
|
|
1415
|
+
"yap",
|
|
1416
|
+
"yar",
|
|
1417
|
+
"yara",
|
|
1418
|
+
"yasnippet",
|
|
1419
|
+
"yml",
|
|
1420
|
+
"yml.mysql",
|
|
1421
|
+
"yrl",
|
|
1422
|
+
"yul",
|
|
1423
|
+
"yy",
|
|
1424
|
+
"yyp",
|
|
1425
|
+
"z3",
|
|
1426
|
+
"zap",
|
|
1427
|
+
"zcml",
|
|
1428
|
+
"zed",
|
|
1429
|
+
"zeek",
|
|
1430
|
+
"zep",
|
|
1431
|
+
"zig",
|
|
1432
|
+
"zig.zon",
|
|
1433
|
+
"zil",
|
|
1434
|
+
"zimpl",
|
|
1435
|
+
"zmodel",
|
|
1436
|
+
"zmpl",
|
|
1437
|
+
"zone",
|
|
1438
|
+
"zpl",
|
|
1439
|
+
"zs",
|
|
1440
|
+
"zsh",
|
|
1441
|
+
"zsh-theme",
|
|
1442
|
+
])
|
|
1443
|
+
|
|
1444
|
+
const pathFileNames = new Set([
|
|
1445
|
+
".abbrev_defs",
|
|
1446
|
+
".ackrc",
|
|
1447
|
+
".all-contributorsrc",
|
|
1448
|
+
".arcconfig",
|
|
1449
|
+
".atomignore",
|
|
1450
|
+
".auto-changelog",
|
|
1451
|
+
".babelignore",
|
|
1452
|
+
".babelrc",
|
|
1453
|
+
".bash_aliases",
|
|
1454
|
+
".bash_functions",
|
|
1455
|
+
".bash_history",
|
|
1456
|
+
".bash_logout",
|
|
1457
|
+
".bash_profile",
|
|
1458
|
+
".bashrc",
|
|
1459
|
+
".browserslistrc",
|
|
1460
|
+
".buckconfig",
|
|
1461
|
+
".bzrignore",
|
|
1462
|
+
".c8rc",
|
|
1463
|
+
".ckignore",
|
|
1464
|
+
".clang-format",
|
|
1465
|
+
".clang-tidy",
|
|
1466
|
+
".clangd",
|
|
1467
|
+
".classpath",
|
|
1468
|
+
".coffeelintignore",
|
|
1469
|
+
".coveragerc",
|
|
1470
|
+
".cshrc",
|
|
1471
|
+
".curlrc",
|
|
1472
|
+
".cvsignore",
|
|
1473
|
+
".dir_colors",
|
|
1474
|
+
".dockerignore",
|
|
1475
|
+
".easignore",
|
|
1476
|
+
".eleventyignore",
|
|
1477
|
+
".env.ci",
|
|
1478
|
+
".env.dev",
|
|
1479
|
+
".env.development",
|
|
1480
|
+
".env.development.local",
|
|
1481
|
+
".env.example",
|
|
1482
|
+
".env.local",
|
|
1483
|
+
".env.prod",
|
|
1484
|
+
".env.production",
|
|
1485
|
+
".env.sample",
|
|
1486
|
+
".env.staging",
|
|
1487
|
+
".env.template",
|
|
1488
|
+
".env.test",
|
|
1489
|
+
".env.testing",
|
|
1490
|
+
".envrc",
|
|
1491
|
+
".eslint-ignore",
|
|
1492
|
+
".eslintignore",
|
|
1493
|
+
".exrc",
|
|
1494
|
+
".factor-boot-rc",
|
|
1495
|
+
".factor-rc",
|
|
1496
|
+
".flake8",
|
|
1497
|
+
".flaskenv",
|
|
1498
|
+
".gclient",
|
|
1499
|
+
".gemrc",
|
|
1500
|
+
".git-blame-ignore-revs",
|
|
1501
|
+
".gitattributes",
|
|
1502
|
+
".gitmodules",
|
|
1503
|
+
".gnus",
|
|
1504
|
+
".gvimrc",
|
|
1505
|
+
".htaccess",
|
|
1506
|
+
".htmlhintrc",
|
|
1507
|
+
".ignore",
|
|
1508
|
+
".imgbotconfig",
|
|
1509
|
+
".inputrc",
|
|
1510
|
+
".irbrc",
|
|
1511
|
+
".jscsrc",
|
|
1512
|
+
".jshintrc",
|
|
1513
|
+
".jslintrc",
|
|
1514
|
+
".justfile",
|
|
1515
|
+
".kshrc",
|
|
1516
|
+
".latexmkrc",
|
|
1517
|
+
".login",
|
|
1518
|
+
".luacheckrc",
|
|
1519
|
+
".markdownlintignore",
|
|
1520
|
+
".nodemonignore",
|
|
1521
|
+
".npmignore",
|
|
1522
|
+
".npmrc",
|
|
1523
|
+
".nvimrc",
|
|
1524
|
+
".nycrc",
|
|
1525
|
+
".php_cs",
|
|
1526
|
+
".php_cs.dist",
|
|
1527
|
+
".prettierignore",
|
|
1528
|
+
".profile",
|
|
1529
|
+
".project",
|
|
1530
|
+
".pryrc",
|
|
1531
|
+
".pylintrc",
|
|
1532
|
+
".rgignore",
|
|
1533
|
+
".rprofile",
|
|
1534
|
+
".rspec",
|
|
1535
|
+
".scalafix.conf",
|
|
1536
|
+
".scalafmt.conf",
|
|
1537
|
+
".shellcheckrc",
|
|
1538
|
+
".simplecov",
|
|
1539
|
+
".spacemacs",
|
|
1540
|
+
".stylelintignore",
|
|
1541
|
+
".swcrc",
|
|
1542
|
+
".tern-config",
|
|
1543
|
+
".tern-project",
|
|
1544
|
+
".tgitconfig",
|
|
1545
|
+
".tm_properties",
|
|
1546
|
+
".tmux.conf",
|
|
1547
|
+
".vercelignore",
|
|
1548
|
+
".viper",
|
|
1549
|
+
".vscodeignore",
|
|
1550
|
+
".watchmanconfig",
|
|
1551
|
+
".wgetrc",
|
|
1552
|
+
".xcompose",
|
|
1553
|
+
".xinitrc",
|
|
1554
|
+
".xsession",
|
|
1555
|
+
".yardopts",
|
|
1556
|
+
".zlogin",
|
|
1557
|
+
".zlogout",
|
|
1558
|
+
".zprofile",
|
|
1559
|
+
".zshenv",
|
|
1560
|
+
".zshrc",
|
|
1561
|
+
"9fs",
|
|
1562
|
+
"_curlrc",
|
|
1563
|
+
"_dir_colors",
|
|
1564
|
+
"_dircolors",
|
|
1565
|
+
"_emacs",
|
|
1566
|
+
"_redirects",
|
|
1567
|
+
"_vimrc",
|
|
1568
|
+
"abbrev_defs",
|
|
1569
|
+
"ack",
|
|
1570
|
+
"ackrc",
|
|
1571
|
+
"android.bp",
|
|
1572
|
+
"apache2.conf",
|
|
1573
|
+
"apkbuild",
|
|
1574
|
+
"app.config",
|
|
1575
|
+
"appraisals",
|
|
1576
|
+
"bash_aliases",
|
|
1577
|
+
"bash_logout",
|
|
1578
|
+
"bash_profile",
|
|
1579
|
+
"bashrc",
|
|
1580
|
+
"berksfile",
|
|
1581
|
+
"brewfile",
|
|
1582
|
+
"browserslist",
|
|
1583
|
+
"bsdmakefile",
|
|
1584
|
+
"buck",
|
|
1585
|
+
"build",
|
|
1586
|
+
"build.bazel",
|
|
1587
|
+
"buildfile",
|
|
1588
|
+
"cabal.config",
|
|
1589
|
+
"cabal.project",
|
|
1590
|
+
"caddyfile",
|
|
1591
|
+
"cakefile",
|
|
1592
|
+
"capfile",
|
|
1593
|
+
"cargo.toml.orig",
|
|
1594
|
+
"cask",
|
|
1595
|
+
"citation",
|
|
1596
|
+
"citation.cff",
|
|
1597
|
+
"citations",
|
|
1598
|
+
"cksums",
|
|
1599
|
+
"codeowners",
|
|
1600
|
+
"commit_editmsg",
|
|
1601
|
+
"config.worktree",
|
|
1602
|
+
"configure.ac",
|
|
1603
|
+
"containerfile",
|
|
1604
|
+
"contents.lr",
|
|
1605
|
+
"copying",
|
|
1606
|
+
"cpanfile",
|
|
1607
|
+
"crontab",
|
|
1608
|
+
"cshrc",
|
|
1609
|
+
"dangerfile",
|
|
1610
|
+
"deliverfile",
|
|
1611
|
+
"deps",
|
|
1612
|
+
"dir_colors",
|
|
1613
|
+
"dockerfile",
|
|
1614
|
+
"dune-project",
|
|
1615
|
+
"earthfile",
|
|
1616
|
+
"eask",
|
|
1617
|
+
"emakefile",
|
|
1618
|
+
"encodings.dir",
|
|
1619
|
+
"eqnrc",
|
|
1620
|
+
"expr-dist",
|
|
1621
|
+
"fakefile",
|
|
1622
|
+
"fastfile",
|
|
1623
|
+
"file_contexts",
|
|
1624
|
+
"firestore.rules",
|
|
1625
|
+
"fontlog",
|
|
1626
|
+
"fonts.alias",
|
|
1627
|
+
"fonts.dir",
|
|
1628
|
+
"fonts.scale",
|
|
1629
|
+
"fp-lib-table",
|
|
1630
|
+
"gemfile",
|
|
1631
|
+
"genfs_contexts",
|
|
1632
|
+
"gitignore-global",
|
|
1633
|
+
"gitignore_global",
|
|
1634
|
+
"gnumakefile",
|
|
1635
|
+
"go.work",
|
|
1636
|
+
"gradlew",
|
|
1637
|
+
"gtkrc",
|
|
1638
|
+
"gtkrc-2.0",
|
|
1639
|
+
"guardfile",
|
|
1640
|
+
"gvimrc",
|
|
1641
|
+
"hosts",
|
|
1642
|
+
"httpd.conf",
|
|
1643
|
+
"initial_sids",
|
|
1644
|
+
"inputrc",
|
|
1645
|
+
"install",
|
|
1646
|
+
"jakefile",
|
|
1647
|
+
"jarfile",
|
|
1648
|
+
"jenkinsfile",
|
|
1649
|
+
"justfile",
|
|
1650
|
+
"kakrc",
|
|
1651
|
+
"kbuild",
|
|
1652
|
+
"kshrc",
|
|
1653
|
+
"latexmkrc",
|
|
1654
|
+
"ld.script",
|
|
1655
|
+
"license",
|
|
1656
|
+
"login",
|
|
1657
|
+
"m3makefile",
|
|
1658
|
+
"m3overrides",
|
|
1659
|
+
"makefile",
|
|
1660
|
+
"makefile.am",
|
|
1661
|
+
"makefile.in",
|
|
1662
|
+
"man",
|
|
1663
|
+
"manifest.mf",
|
|
1664
|
+
"mavenfile",
|
|
1665
|
+
"mcmod.info",
|
|
1666
|
+
"md5sums",
|
|
1667
|
+
"meson.build",
|
|
1668
|
+
"mkfile",
|
|
1669
|
+
"mmn",
|
|
1670
|
+
"mmt",
|
|
1671
|
+
"mocha.opts",
|
|
1672
|
+
"module.bazel",
|
|
1673
|
+
"modulefile",
|
|
1674
|
+
"mvnw",
|
|
1675
|
+
"nanorc",
|
|
1676
|
+
"news",
|
|
1677
|
+
"nextflow.config",
|
|
1678
|
+
"nginx.conf",
|
|
1679
|
+
"notebook",
|
|
1680
|
+
"nuget.config",
|
|
1681
|
+
"nukefile",
|
|
1682
|
+
"nvimrc",
|
|
1683
|
+
"owh",
|
|
1684
|
+
"package.resolved",
|
|
1685
|
+
"packages.config",
|
|
1686
|
+
"phakefile",
|
|
1687
|
+
"pipfile",
|
|
1688
|
+
"pkgbuild",
|
|
1689
|
+
"podfile",
|
|
1690
|
+
"port_contexts",
|
|
1691
|
+
"procfile",
|
|
1692
|
+
"profile",
|
|
1693
|
+
"project.ede",
|
|
1694
|
+
"project.godot",
|
|
1695
|
+
"puppetfile",
|
|
1696
|
+
"pylintrc",
|
|
1697
|
+
"rakefile",
|
|
1698
|
+
"readme.1st",
|
|
1699
|
+
"rebar.config",
|
|
1700
|
+
"rexfile",
|
|
1701
|
+
"riemann.config",
|
|
1702
|
+
"root",
|
|
1703
|
+
"sconscript",
|
|
1704
|
+
"sconstruct",
|
|
1705
|
+
"security_classes",
|
|
1706
|
+
"settings.stylecop",
|
|
1707
|
+
"sha1sums",
|
|
1708
|
+
"sha256sums",
|
|
1709
|
+
"sha512sums",
|
|
1710
|
+
"singularity",
|
|
1711
|
+
"slakefile",
|
|
1712
|
+
"snakefile",
|
|
1713
|
+
"snapfile",
|
|
1714
|
+
"ssh-config",
|
|
1715
|
+
"ssh_config",
|
|
1716
|
+
"sshconfig",
|
|
1717
|
+
"sshd-config",
|
|
1718
|
+
"sshd_config",
|
|
1719
|
+
"starfield",
|
|
1720
|
+
"steepfile",
|
|
1721
|
+
"suite.rc",
|
|
1722
|
+
"thorfile",
|
|
1723
|
+
"tiltfile",
|
|
1724
|
+
"tmux.conf",
|
|
1725
|
+
"torrc",
|
|
1726
|
+
"troffrc",
|
|
1727
|
+
"troffrc-end",
|
|
1728
|
+
"vagrantfile",
|
|
1729
|
+
"vimrc",
|
|
1730
|
+
"vlcrc",
|
|
1731
|
+
"web.config",
|
|
1732
|
+
"web.debug.config",
|
|
1733
|
+
"web.release.config",
|
|
1734
|
+
"workspace",
|
|
1735
|
+
"workspace.bazel",
|
|
1736
|
+
"workspace.bzlmod",
|
|
1737
|
+
"wscript",
|
|
1738
|
+
"xcompose",
|
|
1739
|
+
"xinitrc",
|
|
1740
|
+
"xsession",
|
|
1741
|
+
"zlogin",
|
|
1742
|
+
"zlogout",
|
|
1743
|
+
"zprofile",
|
|
1744
|
+
"zshenv",
|
|
1745
|
+
"zshrc",
|
|
1746
|
+
])
|
|
1747
|
+
|
|
1748
|
+
const pathFileNamePrefixes = new Set([
|
|
1749
|
+
"9fs",
|
|
1750
|
+
"_curlrc",
|
|
1751
|
+
"_dir_colors",
|
|
1752
|
+
"_dircolors",
|
|
1753
|
+
"_emacs",
|
|
1754
|
+
"_redirects",
|
|
1755
|
+
"_vimrc",
|
|
1756
|
+
"abbrev_defs",
|
|
1757
|
+
"ack",
|
|
1758
|
+
"ackrc",
|
|
1759
|
+
"apkbuild",
|
|
1760
|
+
"appraisals",
|
|
1761
|
+
"bash_aliases",
|
|
1762
|
+
"bash_logout",
|
|
1763
|
+
"bash_profile",
|
|
1764
|
+
"bashrc",
|
|
1765
|
+
"berksfile",
|
|
1766
|
+
"brewfile",
|
|
1767
|
+
"browserslist",
|
|
1768
|
+
"bsdmakefile",
|
|
1769
|
+
"buck",
|
|
1770
|
+
"build",
|
|
1771
|
+
"buildfile",
|
|
1772
|
+
"caddyfile",
|
|
1773
|
+
"cakefile",
|
|
1774
|
+
"capfile",
|
|
1775
|
+
"cask",
|
|
1776
|
+
"citation",
|
|
1777
|
+
"citations",
|
|
1778
|
+
"cksums",
|
|
1779
|
+
"codeowners",
|
|
1780
|
+
"commit_editmsg",
|
|
1781
|
+
"containerfile",
|
|
1782
|
+
"copying",
|
|
1783
|
+
"cpanfile",
|
|
1784
|
+
"crontab",
|
|
1785
|
+
"cshrc",
|
|
1786
|
+
"dangerfile",
|
|
1787
|
+
"deliverfile",
|
|
1788
|
+
"deps",
|
|
1789
|
+
"dir_colors",
|
|
1790
|
+
"dockerfile",
|
|
1791
|
+
"dune-project",
|
|
1792
|
+
"earthfile",
|
|
1793
|
+
"eask",
|
|
1794
|
+
"emakefile",
|
|
1795
|
+
"eqnrc",
|
|
1796
|
+
"expr-dist",
|
|
1797
|
+
"fakefile",
|
|
1798
|
+
"fastfile",
|
|
1799
|
+
"file_contexts",
|
|
1800
|
+
"fontlog",
|
|
1801
|
+
"fp-lib-table",
|
|
1802
|
+
"gemfile",
|
|
1803
|
+
"genfs_contexts",
|
|
1804
|
+
"gitignore-global",
|
|
1805
|
+
"gitignore_global",
|
|
1806
|
+
"gnumakefile",
|
|
1807
|
+
"gradlew",
|
|
1808
|
+
"gtkrc",
|
|
1809
|
+
"guardfile",
|
|
1810
|
+
"gvimrc",
|
|
1811
|
+
"hosts",
|
|
1812
|
+
"initial_sids",
|
|
1813
|
+
"inputrc",
|
|
1814
|
+
"install",
|
|
1815
|
+
"jakefile",
|
|
1816
|
+
"jarfile",
|
|
1817
|
+
"jenkinsfile",
|
|
1818
|
+
"justfile",
|
|
1819
|
+
"kakrc",
|
|
1820
|
+
"kbuild",
|
|
1821
|
+
"kshrc",
|
|
1822
|
+
"latexmkrc",
|
|
1823
|
+
"license",
|
|
1824
|
+
"login",
|
|
1825
|
+
"m3makefile",
|
|
1826
|
+
"m3overrides",
|
|
1827
|
+
"makefile",
|
|
1828
|
+
"man",
|
|
1829
|
+
"mavenfile",
|
|
1830
|
+
"md5sums",
|
|
1831
|
+
"mkfile",
|
|
1832
|
+
"mmn",
|
|
1833
|
+
"mmt",
|
|
1834
|
+
"modulefile",
|
|
1835
|
+
"mvnw",
|
|
1836
|
+
"nanorc",
|
|
1837
|
+
"news",
|
|
1838
|
+
"notebook",
|
|
1839
|
+
"nukefile",
|
|
1840
|
+
"nvimrc",
|
|
1841
|
+
"owh",
|
|
1842
|
+
"phakefile",
|
|
1843
|
+
"pipfile",
|
|
1844
|
+
"pkgbuild",
|
|
1845
|
+
"podfile",
|
|
1846
|
+
"port_contexts",
|
|
1847
|
+
"procfile",
|
|
1848
|
+
"profile",
|
|
1849
|
+
"puppetfile",
|
|
1850
|
+
"pylintrc",
|
|
1851
|
+
"rakefile",
|
|
1852
|
+
"rexfile",
|
|
1853
|
+
"root",
|
|
1854
|
+
"sconscript",
|
|
1855
|
+
"sconstruct",
|
|
1856
|
+
"security_classes",
|
|
1857
|
+
"sha1sums",
|
|
1858
|
+
"sha256sums",
|
|
1859
|
+
"sha512sums",
|
|
1860
|
+
"singularity",
|
|
1861
|
+
"slakefile",
|
|
1862
|
+
"snakefile",
|
|
1863
|
+
"snapfile",
|
|
1864
|
+
"ssh-config",
|
|
1865
|
+
"ssh_config",
|
|
1866
|
+
"sshconfig",
|
|
1867
|
+
"sshd-config",
|
|
1868
|
+
"sshd_config",
|
|
1869
|
+
"starfield",
|
|
1870
|
+
"steepfile",
|
|
1871
|
+
"thorfile",
|
|
1872
|
+
"tiltfile",
|
|
1873
|
+
"torrc",
|
|
1874
|
+
"troffrc",
|
|
1875
|
+
"troffrc-end",
|
|
1876
|
+
"vagrantfile",
|
|
1877
|
+
"vimrc",
|
|
1878
|
+
"vlcrc",
|
|
1879
|
+
"workspace",
|
|
1880
|
+
"wscript",
|
|
1881
|
+
"xcompose",
|
|
1882
|
+
"xinitrc",
|
|
1883
|
+
"xsession",
|
|
1884
|
+
"zlogin",
|
|
1885
|
+
"zlogout",
|
|
1886
|
+
"zprofile",
|
|
1887
|
+
"zshenv",
|
|
1888
|
+
"zshrc",
|
|
1889
|
+
])
|
|
1890
|
+
|
|
1891
|
+
export function inlineCodeKind(text: string): "path" | "url" | undefined {
|
|
1892
|
+
if (/^https?:\/\//i.test(text)) return "url"
|
|
1893
|
+
if (/^[a-z][a-z0-9+.-]*:\/\//i.test(text)) return
|
|
1894
|
+
if (text === "/") return
|
|
1895
|
+
if (/^\/[a-z][a-z0-9-]*$/i.test(text)) return
|
|
1896
|
+
if (/\s/.test(text)) return
|
|
1897
|
+
if (/[()\[\]{}*+=<>|&^"';]/.test(text)) return
|
|
1898
|
+
if (/[/\\]/.test(text) || /^\.\.?[/\\]/.test(text) || hasPathExtension(text) || hasPathFileName(text)) return "path"
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
function hasPathExtension(text: string) {
|
|
1902
|
+
const value = text.toLowerCase()
|
|
1903
|
+
if (value.endsWith(".d.ts")) return true
|
|
1904
|
+
const index = value.lastIndexOf(".")
|
|
1905
|
+
if (index === -1) return false
|
|
1906
|
+
return pathExtensions.has(value.slice(index + 1))
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
function hasPathFileName(text: string) {
|
|
1910
|
+
const value = text.toLowerCase()
|
|
1911
|
+
if (pathFileNames.has(value)) return true
|
|
1912
|
+
const index = value.indexOf(".")
|
|
1913
|
+
if (index === -1) return false
|
|
1914
|
+
return pathFileNamePrefixes.has(value.slice(0, index))
|
|
1915
|
+
}
|