git-trend 1.2.9 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/git_trend/scraper.rb +1 -1
- data/lib/git_trend/version.rb +1 -1
- data/spec/fixtures/trending/alloy +2139 -3806
- data/spec/fixtures/trending/index +2783 -4491
- data/spec/fixtures/trending/ruby +2784 -4450
- data/spec/fixtures/trending/ruby?since=weekly +2808 -4447
- data/spec/fixtures/trending?since= +2785 -4491
- data/spec/fixtures/trending?since=daily +2785 -4491
- data/spec/fixtures/trending?since=monthly +2821 -4464
- data/spec/fixtures/trending?since=weekly +2808 -4473
- data/spec/git_trend/cli_spec.rb +168 -789
- data/spec/spec_helper.rb +3 -6
- metadata +3 -3
data/spec/git_trend/cli_spec.rb
CHANGED
@@ -28,11 +28,11 @@ RSpec.describe GitTrend::CLI do
|
|
28
28
|
let(:number) { 3 }
|
29
29
|
it "display top 3 daily ranking" do
|
30
30
|
res = <<-'EOS'.unindent
|
31
|
-
|No. Name Lang
|
32
|
-
|--- ----------------------------------------
|
33
|
-
| 1
|
34
|
-
| 2
|
35
|
-
| 3
|
31
|
+
|No. Name Lang Star
|
32
|
+
|--- ---------------------------------------- ---------------- ------
|
33
|
+
| 1 linexjlin/GPTs 445
|
34
|
+
| 2 ml-explore/mlx-examples Python 161
|
35
|
+
| 3 PRIS-CV/DemoFusion Jupyter Notebook 169
|
36
36
|
|
37
37
|
EOS
|
38
38
|
expect { cli.invoke(:list, [], number: number, description: false) }.to output(res).to_stdout
|
@@ -55,33 +55,33 @@ RSpec.describe GitTrend::CLI do
|
|
55
55
|
|
56
56
|
it "display daily ranking by language" do
|
57
57
|
res = <<-'EOS'.unindent
|
58
|
-
|No. Name
|
59
|
-
|---
|
60
|
-
| 1
|
61
|
-
| 2
|
62
|
-
| 3
|
63
|
-
| 4
|
64
|
-
| 5
|
65
|
-
| 6
|
66
|
-
| 7
|
67
|
-
| 8
|
68
|
-
| 9
|
69
|
-
| 10
|
70
|
-
| 11
|
71
|
-
| 12 freeCodeCamp/
|
72
|
-
| 13
|
73
|
-
| 14
|
74
|
-
| 15
|
75
|
-
| 16
|
76
|
-
| 17
|
77
|
-
| 18
|
78
|
-
| 19
|
79
|
-
| 20
|
80
|
-
| 21
|
81
|
-
| 22
|
82
|
-
| 23
|
83
|
-
| 24
|
84
|
-
| 25
|
58
|
+
|No. Name Lang Star
|
59
|
+
|--- ---------------------------------------- ---------- ------
|
60
|
+
| 1 greatghoul/remote-working Ruby 34
|
61
|
+
| 2 huginn/huginn Ruby 13
|
62
|
+
| 3 jekyll/jekyll Ruby 11
|
63
|
+
| 4 fastlane/fastlane Ruby 6
|
64
|
+
| 5 rapid7/metasploit-framework Ruby 8
|
65
|
+
| 6 ankane/pghero Ruby 16
|
66
|
+
| 7 joemasilotti/daily-log Ruby 7
|
67
|
+
| 8 hashicorp/vagrant Ruby 5
|
68
|
+
| 9 fluent/fluentd Ruby 5
|
69
|
+
| 10 rubygems/rubygems Ruby 1
|
70
|
+
| 11 otwcode/otwarchive Ruby 2
|
71
|
+
| 12 freeCodeCamp/devdocs Ruby 5
|
72
|
+
| 13 gitlabhq/gitlabhq Ruby 1
|
73
|
+
| 14 gollum/gollum Ruby 2
|
74
|
+
| 15 ruby/ruby Ruby 2
|
75
|
+
| 16 TheOdinProject/theodinproject Ruby 6
|
76
|
+
| 17 wpscanteam/wpscan Ruby 0
|
77
|
+
| 18 mastodon/mastodon Ruby 12
|
78
|
+
| 19 github/explore Ruby 0
|
79
|
+
| 20 tradingview/charting-library-examples Ruby 0
|
80
|
+
| 21 jwt/ruby-jwt Ruby 0
|
81
|
+
| 22 forem/forem Ruby 4
|
82
|
+
| 23 urbanadventurer/WhatWeb Ruby 3
|
83
|
+
| 24 chef/chef Ruby 0
|
84
|
+
| 25 instructure/canvas-lms Ruby 0
|
85
85
|
|
86
86
|
EOS
|
87
87
|
expect { cli.invoke(:list, [], language: language, description: false) }.to output(res).to_stdout
|
@@ -198,33 +198,33 @@ RSpec.describe GitTrend::CLI do
|
|
198
198
|
|
199
199
|
it "display weekly ranking by language" do
|
200
200
|
res = <<-'EOS'.unindent
|
201
|
-
|No. Name
|
202
|
-
|---
|
203
|
-
| 1
|
204
|
-
| 2
|
205
|
-
| 3
|
206
|
-
| 4
|
207
|
-
| 5
|
208
|
-
| 6
|
209
|
-
| 7
|
210
|
-
| 8
|
211
|
-
| 9
|
212
|
-
| 10
|
213
|
-
| 11
|
214
|
-
| 12
|
215
|
-
| 13
|
216
|
-
| 14
|
217
|
-
| 15
|
218
|
-
| 16
|
219
|
-
| 17
|
220
|
-
| 18
|
221
|
-
| 19
|
222
|
-
| 20
|
223
|
-
| 21
|
224
|
-
| 22
|
225
|
-
| 23
|
226
|
-
| 24
|
227
|
-
| 25
|
201
|
+
|No. Name Lang Star
|
202
|
+
|--- ---------------------------------------- ---------- ------
|
203
|
+
| 1 mastodon/mastodon Ruby 115
|
204
|
+
| 2 community/community Ruby 25
|
205
|
+
| 3 freeCodeCamp/devdocs Ruby 65
|
206
|
+
| 4 rapid7/metasploit-framework Ruby 84
|
207
|
+
| 5 github-linguist/linguist Ruby 14
|
208
|
+
| 6 ankane/pghero Ruby 32
|
209
|
+
| 7 chatwoot/chatwoot Ruby 59
|
210
|
+
| 8 department-of-veterans-affairs/vets-api Ruby 2
|
211
|
+
| 9 ekylibre/ekylibre Ruby 21
|
212
|
+
| 10 mileszs/wicked_pdf Ruby 5
|
213
|
+
| 11 elastic/elasticsearch-rails Ruby 2
|
214
|
+
| 12 heartcombo/devise Ruby 16
|
215
|
+
| 13 aws/aws-sdk-ruby Ruby 2
|
216
|
+
| 14 endoflife-date/endoflife.date Ruby 19
|
217
|
+
| 15 jekyll/jekyll Ruby 50
|
218
|
+
| 16 heartcombo/simple_form Ruby 6
|
219
|
+
| 17 thoughtbot/shoulda-matchers Ruby 5
|
220
|
+
| 18 spree/spree Ruby 13
|
221
|
+
| 19 solidusio/solidus Ruby 8
|
222
|
+
| 20 huginn/huginn Ruby 67
|
223
|
+
| 21 CanCanCommunity/cancancan Ruby 2
|
224
|
+
| 22 tradingview/charting-library-examples Ruby 3
|
225
|
+
| 23 kaminari/kaminari Ruby 5
|
226
|
+
| 24 rubocop/rubocop Ruby 10
|
227
|
+
| 25 paper-trail-gem/paper_trail Ruby 3
|
228
228
|
|
229
229
|
EOS
|
230
230
|
expect { cli.invoke(:list, [], language: language, since: since, description: false) }.to output(res).to_stdout
|
@@ -239,7 +239,7 @@ RSpec.describe GitTrend::CLI do
|
|
239
239
|
|
240
240
|
context "with no option" do
|
241
241
|
it "display languages" do
|
242
|
-
expect { cli.languages }.to output(
|
242
|
+
expect { cli.languages }.to output(match("C++").and match("HTML").and match("Ruby")).to_stdout
|
243
243
|
end
|
244
244
|
end
|
245
245
|
end
|
@@ -259,754 +259,133 @@ RSpec.describe GitTrend::CLI do
|
|
259
259
|
|
260
260
|
def dummy_result_without_description
|
261
261
|
<<-'EOS'.unindent
|
262
|
-
|No. Name
|
263
|
-
|---
|
264
|
-
| 1
|
265
|
-
| 2
|
266
|
-
| 3
|
267
|
-
| 4
|
268
|
-
| 5
|
269
|
-
| 6
|
270
|
-
| 7
|
271
|
-
| 8
|
272
|
-
| 9
|
273
|
-
| 10
|
274
|
-
| 11
|
275
|
-
| 12
|
276
|
-
| 13
|
277
|
-
| 14
|
278
|
-
| 15
|
279
|
-
| 16
|
280
|
-
| 17
|
281
|
-
| 18
|
282
|
-
| 19
|
283
|
-
| 20
|
284
|
-
| 21
|
285
|
-
| 22
|
286
|
-
| 23
|
287
|
-
| 24
|
288
|
-
| 25
|
262
|
+
|No. Name Lang Star
|
263
|
+
|--- ------------------------------------------ ---------------- ------
|
264
|
+
| 1 linexjlin/GPTs 445
|
265
|
+
| 2 ml-explore/mlx-examples Python 161
|
266
|
+
| 3 PRIS-CV/DemoFusion Jupyter Notebook 169
|
267
|
+
| 4 jmpoep/vmprotect-3.5.1 C++ 489
|
268
|
+
| 5 prasanthrangan/hyprdots Shell 21
|
269
|
+
| 6 MichaelYuhe/ai-group-tabs TypeScript 230
|
270
|
+
| 7 mli/paper-reading 129
|
271
|
+
| 8 SuperDuperDB/superduperdb Python 497
|
272
|
+
| 9 ByteByteGoHq/system-design-101 268
|
273
|
+
| 10 yformer/EfficientSAM Jupyter Notebook 117
|
274
|
+
| 11 xuchengsheng/spring-reading Java 413
|
275
|
+
| 12 Flode-Labs/vid2densepose Python 164
|
276
|
+
| 13 huggingface/optimum-nvidia Python 133
|
277
|
+
| 14 sweepai/sweep Python 55
|
278
|
+
| 15 practical-tutorials/project-based-learning 2058
|
279
|
+
| 16 home-assistant/core Python 33
|
280
|
+
| 17 100xdevs-cohort-2/assignments JavaScript 117
|
281
|
+
| 18 kgrzybek/modular-monolith-with-ddd C# 21
|
282
|
+
| 19 rmcelreath/stat_rethinking_2024 R 41
|
283
|
+
| 20 jackfrued/Python-100-Days Python 192
|
284
|
+
| 21 01-ai/Yi Python 18
|
285
|
+
| 22 facebookresearch/Pearl Python 95
|
286
|
+
| 23 zzzgydi/clash-verge TypeScript 31
|
287
|
+
| 24 ytdl-org/youtube-dl Python 24
|
288
|
+
| 25 dunglas/frankenphp Go 53
|
289
289
|
|
290
290
|
EOS
|
291
291
|
end
|
292
292
|
|
293
293
|
def dummy_result_no_options
|
294
294
|
<<-'EOS'.unindent
|
295
|
-
|No. Name
|
296
|
-
|---
|
297
|
-
| 1
|
298
|
-
| 2
|
299
|
-
| 3
|
300
|
-
| 4
|
301
|
-
| 5
|
302
|
-
| 6
|
303
|
-
| 7
|
304
|
-
| 8
|
305
|
-
| 9
|
306
|
-
| 10
|
307
|
-
| 11
|
308
|
-
| 12
|
309
|
-
| 13
|
310
|
-
| 14
|
311
|
-
| 15
|
312
|
-
| 16
|
313
|
-
| 17
|
314
|
-
| 18
|
315
|
-
| 19
|
316
|
-
| 20
|
317
|
-
| 21
|
318
|
-
| 22
|
319
|
-
| 23
|
320
|
-
| 24
|
321
|
-
| 25
|
295
|
+
|No. Name Lang Star Description
|
296
|
+
|--- ------------------------------------------ ---------------- ------ ---------------------------------------------------------------------
|
297
|
+
| 1 linexjlin/GPTs 445 leaked prompts of GPTs
|
298
|
+
| 2 ml-explore/mlx-examples Python 161 Examples in the MLX framework
|
299
|
+
| 3 PRIS-CV/DemoFusion Jupyter Notebook 169 Let us democratise high-resolution generation! (arXiv 2023)
|
300
|
+
| 4 jmpoep/vmprotect-3.5.1 C++ 489
|
301
|
+
| 5 prasanthrangan/hyprdots Shell 21 // Aesthetic, dynamic and minimal dots for Arch hyprland
|
302
|
+
| 6 MichaelYuhe/ai-group-tabs TypeScript 230 A Chrome extension helps you group your tabs with AI.
|
303
|
+
| 7 mli/paper-reading 129 深度学习经典、新论文逐段精读
|
304
|
+
| 8 SuperDuperDB/superduperdb Python 497 🔮 SuperDuperDB: Bring AI to your database: Integrate, train and m...
|
305
|
+
| 9 ByteByteGoHq/system-design-101 268 Explain complex systems using visuals and simple terms. Help you p...
|
306
|
+
| 10 yformer/EfficientSAM Jupyter Notebook 117 EfficientSAM: Leveraged Masked Image Pretraining for Efficient Seg...
|
307
|
+
| 11 xuchengsheng/spring-reading Java 413 涵盖了 Spring 框架的核心概念和关键功能,包括控制反转(IOC)容器的...
|
308
|
+
| 12 Flode-Labs/vid2densepose Python 164 Convert your videos to densepose and use it on MagicAnimate
|
309
|
+
| 13 huggingface/optimum-nvidia Python 133
|
310
|
+
| 14 sweepai/sweep Python 55 Sweep: AI-powered Junior Developer for small features and bug fixes.
|
311
|
+
| 15 practical-tutorials/project-based-learning 2058 Curated list of project-based tutorials
|
312
|
+
| 16 home-assistant/core Python 33 🏡 Open source home automation that puts local control and privacy...
|
313
|
+
| 17 100xdevs-cohort-2/assignments JavaScript 117
|
314
|
+
| 18 kgrzybek/modular-monolith-with-ddd C# 21 Full Modular Monolith application with Domain-Driven Design approach.
|
315
|
+
| 19 rmcelreath/stat_rethinking_2024 R 41
|
316
|
+
| 20 jackfrued/Python-100-Days Python 192 Python - 100天从新手到大师
|
317
|
+
| 21 01-ai/Yi Python 18 A series of large language models trained from scratch by develope...
|
318
|
+
| 22 facebookresearch/Pearl Python 95 A Production-ready Reinforcement Learning AI Agent Library brought...
|
319
|
+
| 23 zzzgydi/clash-verge TypeScript 31 A Clash GUI based on tauri. Supports Windows, macOS and Linux.
|
320
|
+
| 24 ytdl-org/youtube-dl Python 24 Command-line program to download videos from YouTube.com and other...
|
321
|
+
| 25 dunglas/frankenphp Go 53 The modern PHP app server
|
322
322
|
|
323
323
|
EOS
|
324
324
|
end
|
325
325
|
|
326
326
|
def dummy_weekly_result
|
327
327
|
<<-'EOS'.unindent
|
328
|
-
|No. Name
|
329
|
-
|---
|
330
|
-
| 1
|
331
|
-
| 2
|
332
|
-
| 3
|
333
|
-
| 4
|
334
|
-
| 5
|
335
|
-
| 6
|
336
|
-
| 7
|
337
|
-
| 8
|
338
|
-
| 9
|
339
|
-
| 10
|
340
|
-
| 11
|
341
|
-
| 12 microsoft/
|
342
|
-
| 13
|
343
|
-
| 14
|
344
|
-
| 15
|
345
|
-
| 16
|
346
|
-
| 17
|
347
|
-
| 18
|
348
|
-
| 19
|
349
|
-
| 20
|
350
|
-
| 21
|
351
|
-
| 22
|
352
|
-
| 23
|
353
|
-
| 24
|
354
|
-
| 25
|
328
|
+
|No. Name Lang Star
|
329
|
+
|--- ------------------------------------------ ---------------- ------
|
330
|
+
| 1 LC044/WeChatMsg Python 10719
|
331
|
+
| 2 microsoft/TaskWeaver Python 1957
|
332
|
+
| 3 facebookresearch/seamless_communication C 1568
|
333
|
+
| 4 lllyasviel/Fooocus Python 3406
|
334
|
+
| 5 sherlock-project/sherlock Python 996
|
335
|
+
| 6 pytorch-labs/gpt-fast Python 2147
|
336
|
+
| 7 comfyanonymous/ComfyUI Python 1518
|
337
|
+
| 8 VikParuchuri/marker Python 1497
|
338
|
+
| 9 xuchengsheng/spring-reading Java 637
|
339
|
+
| 10 Mozilla-Ocho/llamafile C++ 1833
|
340
|
+
| 11 go-gost/gost Go 487
|
341
|
+
| 12 microsoft/PowerToys C# 905
|
342
|
+
| 13 songquanpeng/one-api Go 323
|
343
|
+
| 14 nocodb/nocodb TypeScript 392
|
344
|
+
| 15 AleoHQ/leo Rust 744
|
345
|
+
| 16 modularml/mojo Jupyter Notebook 386
|
346
|
+
| 17 gkd-kit/gkd Kotlin 1272
|
347
|
+
| 18 danny-avila/LibreChat TypeScript 647
|
348
|
+
| 19 practical-tutorials/project-based-learning 1670
|
349
|
+
| 20 pocketbase/pocketbase Go 457
|
350
|
+
| 21 symfony/symfony PHP 35
|
351
|
+
| 22 awesome-selfhosted/awesome-selfhosted 2239
|
352
|
+
| 23 upscayl/upscayl TypeScript 266
|
353
|
+
| 24 coolsnowwolf/lede C 132
|
354
|
+
| 25 QwenLM/Qwen Python 377
|
355
355
|
|
356
356
|
EOS
|
357
357
|
end
|
358
358
|
|
359
359
|
def dummy_monthly_result
|
360
360
|
<<-'EOS'.unindent
|
361
|
-
|No. Name
|
362
|
-
|---
|
363
|
-
| 1
|
364
|
-
| 2
|
365
|
-
| 3
|
366
|
-
| 4
|
367
|
-
| 5
|
368
|
-
| 6
|
369
|
-
| 7
|
370
|
-
| 8
|
371
|
-
| 9
|
372
|
-
| 10
|
373
|
-
| 11
|
374
|
-
| 12
|
375
|
-
| 13
|
376
|
-
| 14
|
377
|
-
| 15
|
378
|
-
| 16
|
379
|
-
| 17
|
380
|
-
| 18
|
381
|
-
| 19
|
382
|
-
| 20
|
383
|
-
| 21
|
384
|
-
| 22
|
385
|
-
| 23
|
386
|
-
| 24
|
387
|
-
| 25
|
361
|
+
|No. Name Lang Star
|
362
|
+
|--- ---------------------------------------- ---------------- ------
|
363
|
+
| 1 SawyerHood/draw-a-ui TypeScript 11761
|
364
|
+
| 2 Stability-AI/generative-models Python 7286
|
365
|
+
| 3 microsoft/ML-For-Beginners HTML 9252
|
366
|
+
| 4 microsoft/generative-ai-for-beginners Jupyter Notebook 15174
|
367
|
+
| 5 lllyasviel/Fooocus Python 10023
|
368
|
+
| 6 langchain-ai/opengpts Rich Text Format 3978
|
369
|
+
| 7 facebookresearch/seamless_communication C 2607
|
370
|
+
| 8 microsoft/AI-For-Beginners Jupyter Notebook 5708
|
371
|
+
| 9 tldraw/tldraw TypeScript 6750
|
372
|
+
| 10 atomicals/atomicals-js TypeScript 627
|
373
|
+
| 11 githubnext/monaspace TypeScript 9912
|
374
|
+
| 12 udlbook/udlbook Jupyter Notebook 1551
|
375
|
+
| 13 comfyanonymous/ComfyUI Python 4197
|
376
|
+
| 14 langgenius/dify TypeScript 2906
|
377
|
+
| 15 lobehub/lobe-chat TypeScript 2622
|
378
|
+
| 16 luosiallen/latent-consistency-model Python 2706
|
379
|
+
| 17 daveshap/OpenAI_Agent_Swarm Python 2310
|
380
|
+
| 18 chenzomi12/DeepLearningSystem Jupyter Notebook 1760
|
381
|
+
| 19 biomejs/biome Rust 2372
|
382
|
+
| 20 openai/openai-python Python 2811
|
383
|
+
| 21 AppFlowy-IO/AppFlowy Dart 3071
|
384
|
+
| 22 saadeghi/daisyui Svelte 1773
|
385
|
+
| 23 nlohmann/json C++ 1080
|
386
|
+
| 24 SillyTavern/SillyTavern JavaScript 1566
|
387
|
+
| 25 1Panel-dev/1Panel Go 1950
|
388
388
|
|
389
389
|
EOS
|
390
390
|
end
|
391
|
-
|
392
|
-
def dummy_languages
|
393
|
-
<<-'EOS'.unindent
|
394
|
-
|C++
|
395
|
-
|HTML
|
396
|
-
|Java
|
397
|
-
|JavaScript
|
398
|
-
|PHP
|
399
|
-
|Python
|
400
|
-
|Ruby
|
401
|
-
|Unknown languages
|
402
|
-
|1C Enterprise
|
403
|
-
|4D
|
404
|
-
|ABAP
|
405
|
-
|ABAP CDS
|
406
|
-
|ABNF
|
407
|
-
|ActionScript
|
408
|
-
|Ada
|
409
|
-
|Adobe Font Metrics
|
410
|
-
|Agda
|
411
|
-
|AGS Script
|
412
|
-
|AIDL
|
413
|
-
|AL
|
414
|
-
|AL
|
415
|
-
|Alloy
|
416
|
-
|Alpine Abuild
|
417
|
-
|Altium Designer
|
418
|
-
|AMPL
|
419
|
-
|AngelScript
|
420
|
-
|Ant Build System
|
421
|
-
|ANTLR
|
422
|
-
|ApacheConf
|
423
|
-
|Apex
|
424
|
-
|API Blueprint
|
425
|
-
|APL
|
426
|
-
|Apollo Guidance Computer
|
427
|
-
|AppleScript
|
428
|
-
|Arc
|
429
|
-
|AsciiDoc
|
430
|
-
|ASL
|
431
|
-
|ASN.1
|
432
|
-
|Classic ASP
|
433
|
-
|ASP.NET
|
434
|
-
|AspectJ
|
435
|
-
|Assembly
|
436
|
-
|Astro
|
437
|
-
|Asymptote
|
438
|
-
|ATS
|
439
|
-
|Augeas
|
440
|
-
|AutoHotkey
|
441
|
-
|AutoIt
|
442
|
-
|Avro IDL
|
443
|
-
|Awk
|
444
|
-
|Ballerina
|
445
|
-
|BASIC
|
446
|
-
|Batchfile
|
447
|
-
|Beef
|
448
|
-
|Befunge
|
449
|
-
|BibTeX
|
450
|
-
|Bicep
|
451
|
-
|Bison
|
452
|
-
|BitBake
|
453
|
-
|Blade
|
454
|
-
|BlitzBasic
|
455
|
-
|BlitzMax
|
456
|
-
|Bluespec
|
457
|
-
|Boo
|
458
|
-
|Boogie
|
459
|
-
|Brainfuck
|
460
|
-
|Brightscript
|
461
|
-
|Zeek
|
462
|
-
|Browserslist
|
463
|
-
|C
|
464
|
-
|C#
|
465
|
-
|C-ObjDump
|
466
|
-
|C2hs Haskell
|
467
|
-
|Cabal Config
|
468
|
-
|Cap'n Proto
|
469
|
-
|CartoCSS
|
470
|
-
|Ceylon
|
471
|
-
|Chapel
|
472
|
-
|Charity
|
473
|
-
|ChucK
|
474
|
-
|CIL
|
475
|
-
|Cirru
|
476
|
-
|Clarion
|
477
|
-
|Classic ASP
|
478
|
-
|Clean
|
479
|
-
|Click
|
480
|
-
|CLIPS
|
481
|
-
|Clojure
|
482
|
-
|Closure Templates
|
483
|
-
|Cloud Firestore Security Rules
|
484
|
-
|CMake
|
485
|
-
|COBOL
|
486
|
-
|CODEOWNERS
|
487
|
-
|CodeQL
|
488
|
-
|CoffeeScript
|
489
|
-
|ColdFusion
|
490
|
-
|ColdFusion CFC
|
491
|
-
|COLLADA
|
492
|
-
|Common Lisp
|
493
|
-
|Common Workflow Language
|
494
|
-
|Component Pascal
|
495
|
-
|CoNLL-U
|
496
|
-
|Cool
|
497
|
-
|Coq
|
498
|
-
|Cpp-ObjDump
|
499
|
-
|Creole
|
500
|
-
|Crystal
|
501
|
-
|CSON
|
502
|
-
|Csound
|
503
|
-
|Csound Document
|
504
|
-
|Csound Score
|
505
|
-
|CSS
|
506
|
-
|CSV
|
507
|
-
|Cuda
|
508
|
-
|CUE
|
509
|
-
|cURL Config
|
510
|
-
|CWeb
|
511
|
-
|Cycript
|
512
|
-
|Cython
|
513
|
-
|D
|
514
|
-
|D-ObjDump
|
515
|
-
|Dafny
|
516
|
-
|Darcs Patch
|
517
|
-
|Dart
|
518
|
-
|DataWeave
|
519
|
-
|desktop
|
520
|
-
|Dhall
|
521
|
-
|Diff
|
522
|
-
|DIGITAL Command Language
|
523
|
-
|dircolors
|
524
|
-
|DirectX 3D File
|
525
|
-
|DM
|
526
|
-
|DNS Zone
|
527
|
-
|Dockerfile
|
528
|
-
|Dogescript
|
529
|
-
|DTrace
|
530
|
-
|Dylan
|
531
|
-
|E
|
532
|
-
|E-mail
|
533
|
-
|Eagle
|
534
|
-
|Earthly
|
535
|
-
|Easybuild
|
536
|
-
|EBNF
|
537
|
-
|eC
|
538
|
-
|Ecere Projects
|
539
|
-
|ECL
|
540
|
-
|ECLiPSe
|
541
|
-
|EditorConfig
|
542
|
-
|Edje Data Collection
|
543
|
-
|edn
|
544
|
-
|Eiffel
|
545
|
-
|EJS
|
546
|
-
|Elixir
|
547
|
-
|Elm
|
548
|
-
|Emacs Lisp
|
549
|
-
|EmberScript
|
550
|
-
|E-mail
|
551
|
-
|EQ
|
552
|
-
|Erlang
|
553
|
-
|F#
|
554
|
-
|F*
|
555
|
-
|Factor
|
556
|
-
|Fancy
|
557
|
-
|Fantom
|
558
|
-
|Faust
|
559
|
-
|Fennel
|
560
|
-
|FIGlet Font
|
561
|
-
|Filebench WML
|
562
|
-
|Filterscript
|
563
|
-
|fish
|
564
|
-
|Fluent
|
565
|
-
|FLUX
|
566
|
-
|Formatted
|
567
|
-
|Forth
|
568
|
-
|Fortran
|
569
|
-
|Fortran Free Form
|
570
|
-
|FreeBasic
|
571
|
-
|FreeMarker
|
572
|
-
|Frege
|
573
|
-
|Futhark
|
574
|
-
|G-code
|
575
|
-
|Game Maker Language
|
576
|
-
|GAML
|
577
|
-
|GAMS
|
578
|
-
|GAP
|
579
|
-
|GCC Machine Description
|
580
|
-
|GDB
|
581
|
-
|GDScript
|
582
|
-
|GEDCOM
|
583
|
-
|Gemfile.lock
|
584
|
-
|Genie
|
585
|
-
|Genshi
|
586
|
-
|Gentoo Ebuild
|
587
|
-
|Gentoo Eclass
|
588
|
-
|Gerber Image
|
589
|
-
|Gettext Catalog
|
590
|
-
|Gherkin
|
591
|
-
|Git Attributes
|
592
|
-
|Git Config
|
593
|
-
|GLSL
|
594
|
-
|Glyph
|
595
|
-
|Glyph Bitmap Distribution Format
|
596
|
-
|GN
|
597
|
-
|Gnuplot
|
598
|
-
|Go
|
599
|
-
|Go Checksums
|
600
|
-
|Go Module
|
601
|
-
|Golo
|
602
|
-
|Gosu
|
603
|
-
|Grace
|
604
|
-
|Gradle
|
605
|
-
|Grammatical Framework
|
606
|
-
|Graph Modeling Language
|
607
|
-
|GraphQL
|
608
|
-
|Graphviz (DOT)
|
609
|
-
|Groovy
|
610
|
-
|Groovy Server Pages
|
611
|
-
|Hack
|
612
|
-
|Haml
|
613
|
-
|Handlebars
|
614
|
-
|HAProxy
|
615
|
-
|Harbour
|
616
|
-
|Haskell
|
617
|
-
|Haxe
|
618
|
-
|HCL
|
619
|
-
|HiveQL
|
620
|
-
|HLSL
|
621
|
-
|HolyC
|
622
|
-
|Jinja
|
623
|
-
|HTML+ECR
|
624
|
-
|HTML+EEX
|
625
|
-
|HTML+ERB
|
626
|
-
|HTML+PHP
|
627
|
-
|HTML+Razor
|
628
|
-
|HTTP
|
629
|
-
|HXML
|
630
|
-
|Hy
|
631
|
-
|HyPhy
|
632
|
-
|IDL
|
633
|
-
|Idris
|
634
|
-
|Ignore List
|
635
|
-
|IGOR Pro
|
636
|
-
|ImageJ Macro
|
637
|
-
|Inform 7
|
638
|
-
|INI
|
639
|
-
|Inno Setup
|
640
|
-
|Io
|
641
|
-
|Ioke
|
642
|
-
|IRC log
|
643
|
-
|Isabelle
|
644
|
-
|Isabelle ROOT
|
645
|
-
|J
|
646
|
-
|Jasmin
|
647
|
-
|Java Properties
|
648
|
-
|Java Server Pages
|
649
|
-
|JavaScript+ERB
|
650
|
-
|JFlex
|
651
|
-
|Jinja
|
652
|
-
|Jison
|
653
|
-
|Jison Lex
|
654
|
-
|Jolie
|
655
|
-
|jq
|
656
|
-
|JSON
|
657
|
-
|JSON with Comments
|
658
|
-
|JSON5
|
659
|
-
|JSONiq
|
660
|
-
|JSONLD
|
661
|
-
|Jsonnet
|
662
|
-
|Julia
|
663
|
-
|Jupyter Notebook
|
664
|
-
|Kaitai Struct
|
665
|
-
|KakouneScript
|
666
|
-
|KiCad Layout
|
667
|
-
|KiCad Legacy Layout
|
668
|
-
|KiCad Schematic
|
669
|
-
|Kit
|
670
|
-
|Kotlin
|
671
|
-
|KRL
|
672
|
-
|Kusto
|
673
|
-
|LabVIEW
|
674
|
-
|Lark
|
675
|
-
|Lasso
|
676
|
-
|Latte
|
677
|
-
|Lean
|
678
|
-
|Less
|
679
|
-
|Lex
|
680
|
-
|LFE
|
681
|
-
|LilyPond
|
682
|
-
|Limbo
|
683
|
-
|Linker Script
|
684
|
-
|Linux Kernel Module
|
685
|
-
|Liquid
|
686
|
-
|Literate Agda
|
687
|
-
|Literate CoffeeScript
|
688
|
-
|Literate Haskell
|
689
|
-
|LiveScript
|
690
|
-
|LLVM
|
691
|
-
|Logos
|
692
|
-
|Logtalk
|
693
|
-
|LOLCODE
|
694
|
-
|LookML
|
695
|
-
|LoomScript
|
696
|
-
|LSL
|
697
|
-
|LTspice Symbol
|
698
|
-
|Lua
|
699
|
-
|M
|
700
|
-
|M4
|
701
|
-
|M4Sugar
|
702
|
-
|Macaulay2
|
703
|
-
|Makefile
|
704
|
-
|Mako
|
705
|
-
|Markdown
|
706
|
-
|Marko
|
707
|
-
|Mask
|
708
|
-
|Mathematica
|
709
|
-
|MATLAB
|
710
|
-
|Maven POM
|
711
|
-
|Max
|
712
|
-
|MAXScript
|
713
|
-
|mcfunction
|
714
|
-
|Wikitext
|
715
|
-
|Mercury
|
716
|
-
|Meson
|
717
|
-
|Metal
|
718
|
-
|Microsoft Developer Studio Project
|
719
|
-
|Microsoft Visual Studio Solution
|
720
|
-
|MiniD
|
721
|
-
|Mirah
|
722
|
-
|mIRC Script
|
723
|
-
|MLIR
|
724
|
-
|Modelica
|
725
|
-
|Modula-2
|
726
|
-
|Modula-3
|
727
|
-
|Module Management System
|
728
|
-
|Monkey
|
729
|
-
|Moocode
|
730
|
-
|MoonScript
|
731
|
-
|Motoko
|
732
|
-
|Motorola 68K Assembly
|
733
|
-
|MQL4
|
734
|
-
|MQL5
|
735
|
-
|MTML
|
736
|
-
|MUF
|
737
|
-
|mupad
|
738
|
-
|Muse
|
739
|
-
|Mustache
|
740
|
-
|Myghty
|
741
|
-
|nanorc
|
742
|
-
|NASL
|
743
|
-
|NCL
|
744
|
-
|Nearley
|
745
|
-
|Nemerle
|
746
|
-
|NEON
|
747
|
-
|nesC
|
748
|
-
|NetLinx
|
749
|
-
|NetLinx+ERB
|
750
|
-
|NetLogo
|
751
|
-
|NewLisp
|
752
|
-
|Nextflow
|
753
|
-
|Nginx
|
754
|
-
|Nim
|
755
|
-
|Ninja
|
756
|
-
|Nit
|
757
|
-
|Nix
|
758
|
-
|NL
|
759
|
-
|NPM Config
|
760
|
-
|NSIS
|
761
|
-
|Nu
|
762
|
-
|NumPy
|
763
|
-
|Nunjucks
|
764
|
-
|NWScript
|
765
|
-
|ObjDump
|
766
|
-
|Object Data Instance Notation
|
767
|
-
|Objective-C
|
768
|
-
|Objective-C++
|
769
|
-
|Objective-J
|
770
|
-
|ObjectScript
|
771
|
-
|OCaml
|
772
|
-
|Odin
|
773
|
-
|Omgrofl
|
774
|
-
|ooc
|
775
|
-
|Opa
|
776
|
-
|Opal
|
777
|
-
|Open Policy Agent
|
778
|
-
|OpenCL
|
779
|
-
|OpenEdge ABL
|
780
|
-
|OpenQASM
|
781
|
-
|OpenRC runscript
|
782
|
-
|OpenSCAD
|
783
|
-
|OpenStep Property List
|
784
|
-
|OpenType Feature File
|
785
|
-
|Org
|
786
|
-
|Ox
|
787
|
-
|Oxygene
|
788
|
-
|Oz
|
789
|
-
|P4
|
790
|
-
|Pan
|
791
|
-
|Papyrus
|
792
|
-
|Parrot
|
793
|
-
|Parrot Assembly
|
794
|
-
|Parrot Internal Representation
|
795
|
-
|Pascal
|
796
|
-
|Pawn
|
797
|
-
|PEG.js
|
798
|
-
|Pep8
|
799
|
-
|Perl
|
800
|
-
|Pic
|
801
|
-
|Pickle
|
802
|
-
|PicoLisp
|
803
|
-
|PigLatin
|
804
|
-
|Pike
|
805
|
-
|PlantUML
|
806
|
-
|PLpgSQL
|
807
|
-
|PLSQL
|
808
|
-
|Pod
|
809
|
-
|Pod 6
|
810
|
-
|PogoScript
|
811
|
-
|Pony
|
812
|
-
|PostCSS
|
813
|
-
|PostScript
|
814
|
-
|POV-Ray SDL
|
815
|
-
|PowerBuilder
|
816
|
-
|PowerShell
|
817
|
-
|Prisma
|
818
|
-
|Processing
|
819
|
-
|Proguard
|
820
|
-
|Prolog
|
821
|
-
|Promela
|
822
|
-
|Propeller Spin
|
823
|
-
|Protocol Buffer
|
824
|
-
|Public Key
|
825
|
-
|Pug
|
826
|
-
|Puppet
|
827
|
-
|Pure Data
|
828
|
-
|PureBasic
|
829
|
-
|PureScript
|
830
|
-
|Python console
|
831
|
-
|Python traceback
|
832
|
-
|q
|
833
|
-
|Q#
|
834
|
-
|QMake
|
835
|
-
|QML
|
836
|
-
|Qt Script
|
837
|
-
|Quake
|
838
|
-
|R
|
839
|
-
|Racket
|
840
|
-
|Ragel
|
841
|
-
|Raku
|
842
|
-
|RAML
|
843
|
-
|Rascal
|
844
|
-
|Raw token data
|
845
|
-
|RDoc
|
846
|
-
|Readline Config
|
847
|
-
|REALbasic
|
848
|
-
|Reason
|
849
|
-
|Rebol
|
850
|
-
|Red
|
851
|
-
|Redcode
|
852
|
-
|Regular Expression
|
853
|
-
|Ren'Py
|
854
|
-
|RenderScript
|
855
|
-
|ReScript
|
856
|
-
|reStructuredText
|
857
|
-
|REXX
|
858
|
-
|Rich Text Format
|
859
|
-
|Ring
|
860
|
-
|Riot
|
861
|
-
|RMarkdown
|
862
|
-
|RobotFramework
|
863
|
-
|robots.txt
|
864
|
-
|Roff
|
865
|
-
|Roff Manpage
|
866
|
-
|Rouge
|
867
|
-
|RPC
|
868
|
-
|RPM Spec
|
869
|
-
|RUNOFF
|
870
|
-
|Rust
|
871
|
-
|Sage
|
872
|
-
|SaltStack
|
873
|
-
|SAS
|
874
|
-
|Sass
|
875
|
-
|Scala
|
876
|
-
|Scaml
|
877
|
-
|Scheme
|
878
|
-
|Scilab
|
879
|
-
|SCSS
|
880
|
-
|sed
|
881
|
-
|Self
|
882
|
-
|ShaderLab
|
883
|
-
|Shell
|
884
|
-
|ShellSession
|
885
|
-
|Shen
|
886
|
-
|Sieve
|
887
|
-
|Singularity
|
888
|
-
|Slash
|
889
|
-
|Slice
|
890
|
-
|Slim
|
891
|
-
|Smali
|
892
|
-
|Smalltalk
|
893
|
-
|Smarty
|
894
|
-
|SmPL
|
895
|
-
|SMT
|
896
|
-
|Solidity
|
897
|
-
|SourcePawn
|
898
|
-
|SPARQL
|
899
|
-
|Spline Font Database
|
900
|
-
|SQF
|
901
|
-
|SQL
|
902
|
-
|SQLPL
|
903
|
-
|Squirrel
|
904
|
-
|SRecode Template
|
905
|
-
|SSH Config
|
906
|
-
|Stan
|
907
|
-
|Standard ML
|
908
|
-
|Starlark
|
909
|
-
|Stata
|
910
|
-
|STON
|
911
|
-
|StringTemplate
|
912
|
-
|Stylus
|
913
|
-
|SubRip Text
|
914
|
-
|SugarSS
|
915
|
-
|SuperCollider
|
916
|
-
|Svelte
|
917
|
-
|SVG
|
918
|
-
|Swift
|
919
|
-
|SWIG
|
920
|
-
|SystemVerilog
|
921
|
-
|Tcl
|
922
|
-
|Tcsh
|
923
|
-
|Tea
|
924
|
-
|Terra
|
925
|
-
|TeX
|
926
|
-
|Texinfo
|
927
|
-
|Text
|
928
|
-
|Textile
|
929
|
-
|Thrift
|
930
|
-
|TI Program
|
931
|
-
|TLA
|
932
|
-
|TOML
|
933
|
-
|TSQL
|
934
|
-
|TSV
|
935
|
-
|TSX
|
936
|
-
|Turing
|
937
|
-
|Turtle
|
938
|
-
|Twig
|
939
|
-
|TXL
|
940
|
-
|Type Language
|
941
|
-
|TypeScript
|
942
|
-
|Unified Parallel C
|
943
|
-
|Unity3D Asset
|
944
|
-
|Unix Assembly
|
945
|
-
|Uno
|
946
|
-
|UnrealScript
|
947
|
-
|UrWeb
|
948
|
-
|V
|
949
|
-
|Vala
|
950
|
-
|Valve Data Format
|
951
|
-
|VBA
|
952
|
-
|VBScript
|
953
|
-
|VCL
|
954
|
-
|Verilog
|
955
|
-
|VHDL
|
956
|
-
|Vim Help File
|
957
|
-
|Vim Script
|
958
|
-
|Vim Snippet
|
959
|
-
|Visual Basic .NET
|
960
|
-
|Visual Basic .NET
|
961
|
-
|Volt
|
962
|
-
|Vue
|
963
|
-
|Wavefront Material
|
964
|
-
|Wavefront Object
|
965
|
-
|wdl
|
966
|
-
|Web Ontology Language
|
967
|
-
|WebAssembly
|
968
|
-
|WebIDL
|
969
|
-
|WebVTT
|
970
|
-
|Wget Config
|
971
|
-
|Wikitext
|
972
|
-
|Windows Registry Entries
|
973
|
-
|wisp
|
974
|
-
|Wollok
|
975
|
-
|World of Warcraft Addon Data
|
976
|
-
|X BitMap
|
977
|
-
|X Font Directory Index
|
978
|
-
|X PixMap
|
979
|
-
|X10
|
980
|
-
|xBase
|
981
|
-
|XC
|
982
|
-
|XCompose
|
983
|
-
|XML
|
984
|
-
|XML Property List
|
985
|
-
|Xojo
|
986
|
-
|Xonsh
|
987
|
-
|XPages
|
988
|
-
|XProc
|
989
|
-
|XQuery
|
990
|
-
|XS
|
991
|
-
|XSLT
|
992
|
-
|Xtend
|
993
|
-
|Yacc
|
994
|
-
|YAML
|
995
|
-
|YANG
|
996
|
-
|YARA
|
997
|
-
|YASnippet
|
998
|
-
|ZAP
|
999
|
-
|Zeek
|
1000
|
-
|ZenScript
|
1001
|
-
|Zephir
|
1002
|
-
|Zig
|
1003
|
-
|ZIL
|
1004
|
-
|Zimpl
|
1005
|
-
|
|
1006
|
-
|611 languages
|
1007
|
-
|you can get only selected language list with '-l' option.
|
1008
|
-
|if languages is unknown, you can specify 'unkown'.
|
1009
|
-
|
|
1010
|
-
EOS
|
1011
|
-
end
|
1012
391
|
end
|