gitea源码

generate-svg-vscode-extensions.json 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  1. {
  2. "pkg:bat": {
  3. "bat": [
  4. ".bat",
  5. ".cmd"
  6. ]
  7. },
  8. "pkg:clojure": {
  9. "clojure": [
  10. ".clj",
  11. ".cljs",
  12. ".cljc",
  13. ".cljx",
  14. ".clojure",
  15. ".edn"
  16. ]
  17. },
  18. "pkg:coffeescript": {
  19. "coffeescript": [
  20. ".coffee",
  21. ".cson",
  22. ".iced"
  23. ]
  24. },
  25. "pkg:configuration-editing": {
  26. "jsonc": [
  27. ".code-workspace",
  28. "language-configuration.json",
  29. "icon-theme.json",
  30. "color-theme.json"
  31. ],
  32. "json": [
  33. ".code-profile"
  34. ]
  35. },
  36. "pkg:cpp": {
  37. "c": [
  38. ".c",
  39. ".i"
  40. ],
  41. "cpp": [
  42. ".cpp",
  43. ".cppm",
  44. ".cc",
  45. ".ccm",
  46. ".cxx",
  47. ".cxxm",
  48. ".c++",
  49. ".c++m",
  50. ".hpp",
  51. ".hh",
  52. ".hxx",
  53. ".h++",
  54. ".h",
  55. ".ii",
  56. ".ino",
  57. ".inl",
  58. ".ipp",
  59. ".ixx",
  60. ".tpp",
  61. ".txx",
  62. ".hpp.in",
  63. ".h.in"
  64. ],
  65. "cuda-cpp": [
  66. ".cu",
  67. ".cuh"
  68. ]
  69. },
  70. "pkg:csharp": {
  71. "csharp": [
  72. ".cs",
  73. ".csx",
  74. ".cake"
  75. ]
  76. },
  77. "pkg:css": {
  78. "css": [
  79. ".css"
  80. ]
  81. },
  82. "pkg:dart": {
  83. "dart": [
  84. ".dart"
  85. ]
  86. },
  87. "pkg:diff": {
  88. "diff": [
  89. ".diff",
  90. ".patch",
  91. ".rej"
  92. ]
  93. },
  94. "pkg:docker": {
  95. "dockerfile": [
  96. ".dockerfile",
  97. ".containerfile"
  98. ]
  99. },
  100. "pkg:fsharp": {
  101. "fsharp": [
  102. ".fs",
  103. ".fsi",
  104. ".fsx",
  105. ".fsscript"
  106. ]
  107. },
  108. "pkg:git-base": {
  109. "ignore": [
  110. ".gitignore_global",
  111. ".gitignore",
  112. ".git-blame-ignore-revs"
  113. ]
  114. },
  115. "pkg:go": {
  116. "go": [
  117. ".go"
  118. ]
  119. },
  120. "pkg:groovy": {
  121. "groovy": [
  122. ".groovy",
  123. ".gvy",
  124. ".gradle",
  125. ".jenkinsfile",
  126. ".nf"
  127. ]
  128. },
  129. "pkg:handlebars": {
  130. "handlebars": [
  131. ".handlebars",
  132. ".hbs",
  133. ".hjs"
  134. ]
  135. },
  136. "pkg:hlsl": {
  137. "hlsl": [
  138. ".hlsl",
  139. ".hlsli",
  140. ".fx",
  141. ".fxh",
  142. ".vsh",
  143. ".psh",
  144. ".cginc",
  145. ".compute"
  146. ]
  147. },
  148. "pkg:html": {
  149. "html": [
  150. ".html",
  151. ".htm",
  152. ".shtml",
  153. ".xhtml",
  154. ".xht",
  155. ".mdoc",
  156. ".jsp",
  157. ".asp",
  158. ".aspx",
  159. ".jshtm",
  160. ".volt",
  161. ".ejs",
  162. ".rhtml"
  163. ]
  164. },
  165. "pkg:ini": {
  166. "ini": [
  167. ".ini"
  168. ],
  169. "properties": [
  170. ".conf",
  171. ".properties",
  172. ".cfg",
  173. ".directory",
  174. ".gitattributes",
  175. ".gitconfig",
  176. ".gitmodules",
  177. ".editorconfig",
  178. ".repo"
  179. ]
  180. },
  181. "pkg:java": {
  182. "java": [
  183. ".java",
  184. ".jav"
  185. ]
  186. },
  187. "pkg:javascript": {
  188. "javascriptreact": [
  189. ".jsx"
  190. ],
  191. "javascript": [
  192. ".js",
  193. ".es6",
  194. ".mjs",
  195. ".cjs",
  196. ".pac"
  197. ]
  198. },
  199. "pkg:json": {
  200. "json": [
  201. ".json",
  202. ".bowerrc",
  203. ".jscsrc",
  204. ".webmanifest",
  205. ".js.map",
  206. ".css.map",
  207. ".ts.map",
  208. ".har",
  209. ".jslintrc",
  210. ".jsonld",
  211. ".geojson",
  212. ".ipynb",
  213. ".vuerc"
  214. ],
  215. "jsonc": [
  216. ".jsonc",
  217. ".eslintrc",
  218. ".eslintrc.json",
  219. ".jsfmtrc",
  220. ".jshintrc",
  221. ".swcrc",
  222. ".hintrc",
  223. ".babelrc"
  224. ],
  225. "jsonl": [
  226. ".jsonl",
  227. ".ndjson"
  228. ],
  229. "snippets": [
  230. ".code-snippets"
  231. ]
  232. },
  233. "pkg:julia": {
  234. "julia": [
  235. ".jl"
  236. ],
  237. "juliamarkdown": [
  238. ".jmd"
  239. ]
  240. },
  241. "pkg:latex": {
  242. "tex": [
  243. ".sty",
  244. ".cls",
  245. ".bbx",
  246. ".cbx"
  247. ],
  248. "latex": [
  249. ".tex",
  250. ".ltx",
  251. ".ctx"
  252. ],
  253. "bibtex": [
  254. ".bib"
  255. ]
  256. },
  257. "pkg:less": {
  258. "less": [
  259. ".less"
  260. ]
  261. },
  262. "pkg:log": {
  263. "log": [
  264. ".log",
  265. "*.log.?"
  266. ]
  267. },
  268. "pkg:lua": {
  269. "lua": [
  270. ".lua"
  271. ]
  272. },
  273. "pkg:make": {
  274. "makefile": [
  275. ".mak",
  276. ".mk"
  277. ]
  278. },
  279. "pkg:markdown-basics": {
  280. "markdown": [
  281. ".md",
  282. ".mkd",
  283. ".mdwn",
  284. ".mdown",
  285. ".markdown",
  286. ".markdn",
  287. ".mdtxt",
  288. ".mdtext",
  289. ".workbook"
  290. ]
  291. },
  292. "pkg:ms-vscode.js-debug": {
  293. "wat": [
  294. ".wat",
  295. ".wasm"
  296. ]
  297. },
  298. "pkg:npm": {
  299. "ignore": [
  300. ".npmignore"
  301. ],
  302. "properties": [
  303. ".npmrc"
  304. ]
  305. },
  306. "pkg:objective-c": {
  307. "objective-c": [
  308. ".m"
  309. ],
  310. "objective-cpp": [
  311. ".mm"
  312. ]
  313. },
  314. "pkg:perl": {
  315. "perl": [
  316. ".pl",
  317. ".pm",
  318. ".pod",
  319. ".t",
  320. ".PL",
  321. ".psgi"
  322. ],
  323. "raku": [
  324. ".raku",
  325. ".rakumod",
  326. ".rakutest",
  327. ".rakudoc",
  328. ".nqp",
  329. ".p6",
  330. ".pl6",
  331. ".pm6"
  332. ]
  333. },
  334. "pkg:php": {
  335. "php": [
  336. ".php",
  337. ".php4",
  338. ".php5",
  339. ".phtml",
  340. ".ctp"
  341. ]
  342. },
  343. "pkg:powershell": {
  344. "powershell": [
  345. ".ps1",
  346. ".psm1",
  347. ".psd1",
  348. ".pssc",
  349. ".psrc"
  350. ]
  351. },
  352. "pkg:pug": {
  353. "jade": [
  354. ".pug",
  355. ".jade"
  356. ]
  357. },
  358. "pkg:python": {
  359. "python": [
  360. ".py",
  361. ".rpy",
  362. ".pyw",
  363. ".cpy",
  364. ".gyp",
  365. ".gypi",
  366. ".pyi",
  367. ".ipy",
  368. ".pyt"
  369. ]
  370. },
  371. "pkg:r": {
  372. "r": [
  373. ".r",
  374. ".rhistory",
  375. ".rprofile",
  376. ".rt"
  377. ]
  378. },
  379. "pkg:razor": {
  380. "razor": [
  381. ".cshtml",
  382. ".razor"
  383. ]
  384. },
  385. "pkg:restructuredtext": {
  386. "restructuredtext": [
  387. ".rst"
  388. ]
  389. },
  390. "pkg:ruby": {
  391. "ruby": [
  392. ".rb",
  393. ".rbx",
  394. ".rjs",
  395. ".gemspec",
  396. ".rake",
  397. ".ru",
  398. ".erb",
  399. ".podspec",
  400. ".rbi"
  401. ]
  402. },
  403. "pkg:rust": {
  404. "rust": [
  405. ".rs"
  406. ]
  407. },
  408. "pkg:scss": {
  409. "scss": [
  410. ".scss"
  411. ]
  412. },
  413. "pkg:search-result": {
  414. "search-result": [
  415. ".code-search"
  416. ]
  417. },
  418. "pkg:shaderlab": {
  419. "shaderlab": [
  420. ".shader"
  421. ]
  422. },
  423. "pkg:shellscript": {
  424. "shellscript": [
  425. ".sh",
  426. ".bash",
  427. ".bashrc",
  428. ".bash_aliases",
  429. ".bash_profile",
  430. ".bash_login",
  431. ".ebuild",
  432. ".eclass",
  433. ".profile",
  434. ".bash_logout",
  435. ".xprofile",
  436. ".xsession",
  437. ".xsessionrc",
  438. ".Xsession",
  439. ".zsh",
  440. ".zshrc",
  441. ".zprofile",
  442. ".zlogin",
  443. ".zlogout",
  444. ".zshenv",
  445. ".zsh-theme",
  446. ".fish",
  447. ".ksh",
  448. ".csh",
  449. ".cshrc",
  450. ".tcshrc",
  451. ".yashrc",
  452. ".yash_profile"
  453. ]
  454. },
  455. "pkg:sql": {
  456. "sql": [
  457. ".sql",
  458. ".dsql"
  459. ]
  460. },
  461. "pkg:swift": {
  462. "swift": [
  463. ".swift"
  464. ]
  465. },
  466. "pkg:typescript-basics": {
  467. "typescript": [
  468. ".ts",
  469. ".cts",
  470. ".mts"
  471. ],
  472. "typescriptreact": [
  473. ".tsx"
  474. ],
  475. "json": [
  476. ".tsbuildinfo"
  477. ]
  478. },
  479. "pkg:vb": {
  480. "vb": [
  481. ".vb",
  482. ".brs",
  483. ".vbs",
  484. ".bas",
  485. ".vba"
  486. ]
  487. },
  488. "pkg:xml": {
  489. "xml": [
  490. ".xml",
  491. ".xsd",
  492. ".ascx",
  493. ".atom",
  494. ".axml",
  495. ".axaml",
  496. ".bpmn",
  497. ".cpt",
  498. ".csl",
  499. ".csproj",
  500. ".csproj.user",
  501. ".dita",
  502. ".ditamap",
  503. ".dtd",
  504. ".ent",
  505. ".mod",
  506. ".dtml",
  507. ".fsproj",
  508. ".fxml",
  509. ".iml",
  510. ".isml",
  511. ".jmx",
  512. ".launch",
  513. ".menu",
  514. ".mxml",
  515. ".nuspec",
  516. ".opml",
  517. ".owl",
  518. ".proj",
  519. ".props",
  520. ".pt",
  521. ".publishsettings",
  522. ".pubxml",
  523. ".pubxml.user",
  524. ".rbxlx",
  525. ".rbxmx",
  526. ".rdf",
  527. ".rng",
  528. ".rss",
  529. ".shproj",
  530. ".storyboard",
  531. ".svg",
  532. ".targets",
  533. ".tld",
  534. ".tmx",
  535. ".vbproj",
  536. ".vbproj.user",
  537. ".vcxproj",
  538. ".vcxproj.filters",
  539. ".wsdl",
  540. ".wxi",
  541. ".wxl",
  542. ".wxs",
  543. ".xaml",
  544. ".xbl",
  545. ".xib",
  546. ".xlf",
  547. ".xliff",
  548. ".xpdl",
  549. ".xul",
  550. ".xoml"
  551. ],
  552. "xsl": [
  553. ".xsl",
  554. ".xslt"
  555. ]
  556. },
  557. "pkg:yaml": {
  558. "yaml": [
  559. ".yaml",
  560. ".yml",
  561. ".eyaml",
  562. ".eyml",
  563. ".cff",
  564. ".yaml-tmlanguage",
  565. ".yaml-tmpreferences",
  566. ".yaml-tmtheme",
  567. ".winget"
  568. ]
  569. }
  570. }