github-linguist 7.23.0 → 7.24.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/github-linguist +13 -3
- data/grammars/etc.json +1 -1
- data/grammars/hidden.manref.json +1 -1
- data/grammars/source.abapcds.json +1 -1
- data/grammars/source.astro.json +1 -1
- data/grammars/source.bicep.json +1 -1
- data/grammars/source.cairo.json +1 -1
- data/grammars/source.cl.json +1 -1
- data/grammars/source.csswg.json +1 -1
- data/grammars/source.cypher.json +1 -0
- data/grammars/source.data-weave.json +1 -1
- data/grammars/source.denizenscript.json +1 -1
- data/grammars/source.editorconfig.json +1 -1
- data/grammars/source.elvish.json +1 -1
- data/grammars/source.gcode.json +1 -1
- data/grammars/source.gdscript.json +1 -1
- data/grammars/source.gdshader.json +1 -1
- data/grammars/source.hack.json +1 -1
- data/grammars/source.httpspec.json +1 -1
- data/grammars/source.imba.json +1 -0
- data/grammars/source.ink.json +1 -0
- data/grammars/source.just.json +1 -0
- data/grammars/source.llvm.json +1 -1
- data/grammars/source.man-conf.json +1 -1
- data/grammars/source.mermaid.c4c-diagram.json +1 -0
- data/grammars/source.mermaid.class-diagram.json +1 -0
- data/grammars/source.mermaid.er-diagram.json +1 -0
- data/grammars/source.mermaid.flowchart.json +1 -0
- data/grammars/source.mermaid.gantt.json +1 -0
- data/grammars/source.mermaid.gitgraph.json +1 -0
- data/grammars/source.mermaid.json +1 -0
- data/grammars/source.mermaid.pie-chart.json +1 -0
- data/grammars/source.mermaid.requirement-diagram.json +1 -0
- data/grammars/source.mermaid.sequence-diagram.json +1 -0
- data/grammars/source.mermaid.state-diagram.json +1 -0
- data/grammars/source.mermaid.user-journey.json +1 -0
- data/grammars/source.mo.json +1 -1
- data/grammars/source.move.json +1 -1
- data/grammars/source.opts.json +1 -1
- data/grammars/source.pddl.happenings.json +1 -0
- data/grammars/source.pddl.json +1 -0
- data/grammars/source.pddl.plan.json +1 -0
- data/grammars/source.polar.json +1 -0
- data/grammars/source.python.json +1 -1
- data/grammars/source.rescript.json +1 -1
- data/grammars/source.rpgle.json +1 -1
- data/grammars/source.scala.json +1 -1
- data/grammars/source.scenic.json +1 -0
- data/grammars/source.sfv.json +1 -0
- data/grammars/source.smithy.json +1 -0
- data/grammars/source.sqf.json +1 -1
- data/grammars/source.svelte.json +1 -1
- data/grammars/source.toc.json +1 -1
- data/grammars/source.ts.json +1 -1
- data/grammars/source.tsx.json +1 -1
- data/grammars/source.xojo.json +1 -1
- data/grammars/source.yara.json +1 -1
- data/grammars/text.adblock.json +1 -1
- data/grammars/text.grammarkdown.json +1 -0
- data/grammars/text.html.ecmarkup.json +1 -0
- data/grammars/text.html.statamic.json +1 -1
- data/grammars/text.restructuredtext.json +1 -1
- data/grammars/text.roff.json +1 -1
- data/grammars/text.youtube.json +1 -0
- data/grammars/version +1 -1
- data/lib/linguist/VERSION +1 -1
- data/lib/linguist/generated.rb +30 -1
- data/lib/linguist/heuristics.yml +36 -2
- data/lib/linguist/languages.json +1 -1
- data/lib/linguist/languages.yml +219 -4
- data/lib/linguist/samples.json +1 -1
- data/lib/linguist/vendor.yml +0 -1
- metadata +29 -3
data/lib/linguist/languages.yml
CHANGED
@@ -1344,6 +1344,15 @@ Cycript:
|
|
1344
1344
|
codemirror_mode: javascript
|
1345
1345
|
codemirror_mime_type: text/javascript
|
1346
1346
|
language_id: 78
|
1347
|
+
Cypher:
|
1348
|
+
type: programming
|
1349
|
+
color: "#34c0eb"
|
1350
|
+
extensions:
|
1351
|
+
- ".cyp"
|
1352
|
+
- ".cypher"
|
1353
|
+
tm_scope: source.cypher
|
1354
|
+
ace_mode: text
|
1355
|
+
language_id: 850806976
|
1347
1356
|
Cython:
|
1348
1357
|
type: programming
|
1349
1358
|
color: "#fedf5b"
|
@@ -1660,10 +1669,25 @@ Ecere Projects:
|
|
1660
1669
|
codemirror_mode: javascript
|
1661
1670
|
codemirror_mime_type: application/json
|
1662
1671
|
language_id: 98
|
1672
|
+
Ecmarkup:
|
1673
|
+
type: markup
|
1674
|
+
color: "#eb8131"
|
1675
|
+
group: HTML
|
1676
|
+
extensions:
|
1677
|
+
- ".html"
|
1678
|
+
tm_scope: text.html.ecmarkup
|
1679
|
+
ace_mode: html
|
1680
|
+
codemirror_mode: htmlmixed
|
1681
|
+
codemirror_mime_type: text/html
|
1682
|
+
aliases:
|
1683
|
+
- ecmarkdown
|
1684
|
+
language_id: 844766630
|
1663
1685
|
EditorConfig:
|
1664
1686
|
type: data
|
1665
1687
|
color: "#fff1f2"
|
1666
1688
|
group: INI
|
1689
|
+
extensions:
|
1690
|
+
- ".editorconfig"
|
1667
1691
|
filenames:
|
1668
1692
|
- ".editorconfig"
|
1669
1693
|
aliases:
|
@@ -2868,6 +2892,14 @@ ImageJ Macro:
|
|
2868
2892
|
ace_mode: text
|
2869
2893
|
tm_scope: none
|
2870
2894
|
language_id: 575143428
|
2895
|
+
Imba:
|
2896
|
+
type: programming
|
2897
|
+
color: "#16cec6"
|
2898
|
+
extensions:
|
2899
|
+
- ".imba"
|
2900
|
+
ace_mode: text
|
2901
|
+
tm_scope: source.imba
|
2902
|
+
language_id: 1057618448
|
2871
2903
|
Inform 7:
|
2872
2904
|
type: programming
|
2873
2905
|
wrap: true
|
@@ -2880,6 +2912,14 @@ Inform 7:
|
|
2880
2912
|
- inform7
|
2881
2913
|
ace_mode: text
|
2882
2914
|
language_id: 166
|
2915
|
+
Ink:
|
2916
|
+
type: programming
|
2917
|
+
wrap: true
|
2918
|
+
extensions:
|
2919
|
+
- ".ink"
|
2920
|
+
tm_scope: source.ink
|
2921
|
+
ace_mode: text
|
2922
|
+
language_id: 838252715
|
2883
2923
|
Inno Setup:
|
2884
2924
|
type: programming
|
2885
2925
|
color: "#264b99"
|
@@ -2985,6 +3025,7 @@ JSON:
|
|
2985
3025
|
- ".yy"
|
2986
3026
|
- ".yyp"
|
2987
3027
|
filenames:
|
3028
|
+
- ".all-contributorsrc"
|
2988
3029
|
- ".arcconfig"
|
2989
3030
|
- ".auto-changelog"
|
2990
3031
|
- ".c8rc"
|
@@ -3098,6 +3139,7 @@ Java:
|
|
3098
3139
|
extensions:
|
3099
3140
|
- ".java"
|
3100
3141
|
- ".jav"
|
3142
|
+
- ".jsh"
|
3101
3143
|
language_id: 181
|
3102
3144
|
Java Properties:
|
3103
3145
|
type: data
|
@@ -3940,6 +3982,17 @@ Mercury:
|
|
3940
3982
|
- ".moo"
|
3941
3983
|
tm_scope: source.mercury
|
3942
3984
|
language_id: 229
|
3985
|
+
Mermaid:
|
3986
|
+
type: markup
|
3987
|
+
color: "#ff3670"
|
3988
|
+
aliases:
|
3989
|
+
- mermaid example
|
3990
|
+
extensions:
|
3991
|
+
- ".mmd"
|
3992
|
+
- ".mermaid"
|
3993
|
+
tm_scope: source.mermaid
|
3994
|
+
ace_mode: text
|
3995
|
+
language_id: 385992043
|
3943
3996
|
Meson:
|
3944
3997
|
type: programming
|
3945
3998
|
color: "#007800"
|
@@ -3986,6 +4039,7 @@ MiniYAML:
|
|
3986
4039
|
tm_scope: source.miniyaml
|
3987
4040
|
extensions:
|
3988
4041
|
- ".yaml"
|
4042
|
+
- ".yml"
|
3989
4043
|
ace_mode: yaml
|
3990
4044
|
codemirror_mode: yaml
|
3991
4045
|
codemirror_mime_type: text/x-yaml
|
@@ -4112,7 +4166,7 @@ Move:
|
|
4112
4166
|
type: programming
|
4113
4167
|
color: "#4a137a"
|
4114
4168
|
extensions:
|
4115
|
-
|
4169
|
+
- ".move"
|
4116
4170
|
tm_scope: source.move
|
4117
4171
|
ace_mode: text
|
4118
4172
|
language_id: 638334599
|
@@ -4381,6 +4435,52 @@ Nunjucks:
|
|
4381
4435
|
tm_scope: text.html.nunjucks
|
4382
4436
|
ace_mode: nunjucks
|
4383
4437
|
language_id: 461856962
|
4438
|
+
OASv2-json:
|
4439
|
+
type: data
|
4440
|
+
color: "#85ea2d"
|
4441
|
+
extensions:
|
4442
|
+
- ".json"
|
4443
|
+
group: OpenAPI Specification v2
|
4444
|
+
tm_scope: source.json
|
4445
|
+
ace_mode: json
|
4446
|
+
codemirror_mode: javascript
|
4447
|
+
codemirror_mime_type: application/json
|
4448
|
+
language_id: 834374816
|
4449
|
+
OASv2-yaml:
|
4450
|
+
type: data
|
4451
|
+
color: "#85ea2d"
|
4452
|
+
extensions:
|
4453
|
+
- ".yaml"
|
4454
|
+
- ".yml"
|
4455
|
+
group: OpenAPI Specification v2
|
4456
|
+
tm_scope: source.yaml
|
4457
|
+
ace_mode: yaml
|
4458
|
+
codemirror_mode: yaml
|
4459
|
+
codemirror_mime_type: text/x-yaml
|
4460
|
+
language_id: 105187618
|
4461
|
+
OASv3-json:
|
4462
|
+
type: data
|
4463
|
+
color: "#85ea2d"
|
4464
|
+
extensions:
|
4465
|
+
- ".json"
|
4466
|
+
group: OpenAPI Specification v3
|
4467
|
+
tm_scope: source.json
|
4468
|
+
ace_mode: json
|
4469
|
+
codemirror_mode: javascript
|
4470
|
+
codemirror_mime_type: application/json
|
4471
|
+
language_id: 980062566
|
4472
|
+
OASv3-yaml:
|
4473
|
+
type: data
|
4474
|
+
color: "#85ea2d"
|
4475
|
+
extensions:
|
4476
|
+
- ".yaml"
|
4477
|
+
- ".yml"
|
4478
|
+
group: OpenAPI Specification v3
|
4479
|
+
tm_scope: source.yaml
|
4480
|
+
ace_mode: yaml
|
4481
|
+
codemirror_mode: yaml
|
4482
|
+
codemirror_mime_type: text/x-yaml
|
4483
|
+
language_id: 51239111
|
4384
4484
|
OCaml:
|
4385
4485
|
type: programming
|
4386
4486
|
ace_mode: ocaml
|
@@ -4507,6 +4607,22 @@ Open Policy Agent:
|
|
4507
4607
|
- ".rego"
|
4508
4608
|
language_id: 840483232
|
4509
4609
|
tm_scope: source.rego
|
4610
|
+
OpenAPI Specification v2:
|
4611
|
+
aliases:
|
4612
|
+
- oasv2
|
4613
|
+
type: data
|
4614
|
+
color: "#85ea2d"
|
4615
|
+
tm_scope: none
|
4616
|
+
ace_mode: text
|
4617
|
+
language_id: 848295328
|
4618
|
+
OpenAPI Specification v3:
|
4619
|
+
aliases:
|
4620
|
+
- oasv3
|
4621
|
+
type: data
|
4622
|
+
color: "#85ea2d"
|
4623
|
+
tm_scope: none
|
4624
|
+
ace_mode: text
|
4625
|
+
language_id: 557959099
|
4510
4626
|
OpenCL:
|
4511
4627
|
type: programming
|
4512
4628
|
color: "#ed2e2d"
|
@@ -4578,6 +4694,21 @@ OpenType Feature File:
|
|
4578
4694
|
tm_scope: source.opentype
|
4579
4695
|
ace_mode: text
|
4580
4696
|
language_id: 374317347
|
4697
|
+
Option List:
|
4698
|
+
type: data
|
4699
|
+
color: "#476732"
|
4700
|
+
aliases:
|
4701
|
+
- opts
|
4702
|
+
- ackrc
|
4703
|
+
filenames:
|
4704
|
+
- ".ackrc"
|
4705
|
+
- ackrc
|
4706
|
+
- mocha.opts
|
4707
|
+
tm_scope: source.opts
|
4708
|
+
ace_mode: sh
|
4709
|
+
codemirror_mode: shell
|
4710
|
+
codemirror_mime_type: text/x-sh
|
4711
|
+
language_id: 723589315
|
4581
4712
|
Org:
|
4582
4713
|
type: prose
|
4583
4714
|
color: "#77aa99"
|
@@ -4622,6 +4753,14 @@ P4:
|
|
4622
4753
|
tm_scope: source.p4
|
4623
4754
|
ace_mode: text
|
4624
4755
|
language_id: 348895984
|
4756
|
+
PDDL:
|
4757
|
+
type: programming
|
4758
|
+
color: "#0d00ff"
|
4759
|
+
extensions:
|
4760
|
+
- ".pddl"
|
4761
|
+
tm_scope: source.pddl
|
4762
|
+
ace_mode: text
|
4763
|
+
language_id: 736235603
|
4625
4764
|
PEG.js:
|
4626
4765
|
type: programming
|
4627
4766
|
color: "#234d6b"
|
@@ -4814,10 +4953,12 @@ Perl:
|
|
4814
4953
|
- ".psgi"
|
4815
4954
|
- ".t"
|
4816
4955
|
filenames:
|
4956
|
+
- ".latexmkrc"
|
4817
4957
|
- Makefile.PL
|
4818
4958
|
- Rexfile
|
4819
4959
|
- ack
|
4820
4960
|
- cpanfile
|
4961
|
+
- latexmkrc
|
4821
4962
|
interpreters:
|
4822
4963
|
- cperl
|
4823
4964
|
- perl
|
@@ -4912,6 +5053,14 @@ PogoScript:
|
|
4912
5053
|
tm_scope: source.pogoscript
|
4913
5054
|
ace_mode: text
|
4914
5055
|
language_id: 289
|
5056
|
+
Polar:
|
5057
|
+
type: programming
|
5058
|
+
color: "#ae81ff"
|
5059
|
+
extensions:
|
5060
|
+
- ".polar"
|
5061
|
+
tm_scope: source.polar
|
5062
|
+
ace_mode: text
|
5063
|
+
language_id: 839112914
|
4915
5064
|
Pony:
|
4916
5065
|
type: programming
|
4917
5066
|
extensions:
|
@@ -5993,6 +6142,16 @@ Scaml:
|
|
5993
6142
|
tm_scope: source.scaml
|
5994
6143
|
ace_mode: text
|
5995
6144
|
language_id: 342
|
6145
|
+
Scenic:
|
6146
|
+
type: programming
|
6147
|
+
color: "#fdc700"
|
6148
|
+
extensions:
|
6149
|
+
- ".scenic"
|
6150
|
+
tm_scope: source.scenic
|
6151
|
+
ace_mode: text
|
6152
|
+
interpreters:
|
6153
|
+
- scenic
|
6154
|
+
language_id: 619814037
|
5996
6155
|
Scheme:
|
5997
6156
|
type: programming
|
5998
6157
|
color: "#1e4aec"
|
@@ -6155,6 +6314,19 @@ Sieve:
|
|
6155
6314
|
codemirror_mode: sieve
|
6156
6315
|
codemirror_mime_type: application/sieve
|
6157
6316
|
language_id: 208976687
|
6317
|
+
Simple File Verification:
|
6318
|
+
type: data
|
6319
|
+
group: Checksums
|
6320
|
+
color: "#C9BFED"
|
6321
|
+
extensions:
|
6322
|
+
- ".sfv"
|
6323
|
+
aliases:
|
6324
|
+
- sfv
|
6325
|
+
tm_scope: source.sfv
|
6326
|
+
ace_mode: ini
|
6327
|
+
codemirror_mode: properties
|
6328
|
+
codemirror_mime_type: text/x-properties
|
6329
|
+
language_id: 735623761
|
6158
6330
|
Singularity:
|
6159
6331
|
type: programming
|
6160
6332
|
color: "#64E6AD"
|
@@ -6229,6 +6401,16 @@ Smarty:
|
|
6229
6401
|
codemirror_mime_type: text/x-smarty
|
6230
6402
|
tm_scope: text.html.smarty
|
6231
6403
|
language_id: 353
|
6404
|
+
Smithy:
|
6405
|
+
type: programming
|
6406
|
+
ace_mode: text
|
6407
|
+
codemirror_mode: clike
|
6408
|
+
codemirror_mime_type: text/x-csrc
|
6409
|
+
tm_scope: source.smithy
|
6410
|
+
color: "#c44536"
|
6411
|
+
extensions:
|
6412
|
+
- ".smithy"
|
6413
|
+
language_id: 1027892786
|
6232
6414
|
Solidity:
|
6233
6415
|
type: programming
|
6234
6416
|
color: "#AA6746"
|
@@ -6311,6 +6493,7 @@ Starlark:
|
|
6311
6493
|
- BUILD.bazel
|
6312
6494
|
- Tiltfile
|
6313
6495
|
- WORKSPACE
|
6496
|
+
- WORKSPACE.bazel
|
6314
6497
|
aliases:
|
6315
6498
|
- bazel
|
6316
6499
|
- bzl
|
@@ -6435,6 +6618,7 @@ TOML:
|
|
6435
6618
|
- Cargo.lock
|
6436
6619
|
- Gopkg.lock
|
6437
6620
|
- Pipfile
|
6621
|
+
- pdm.lock
|
6438
6622
|
- poetry.lock
|
6439
6623
|
tm_scope: source.toml
|
6440
6624
|
ace_mode: toml
|
@@ -6490,8 +6674,13 @@ Tcl:
|
|
6490
6674
|
extensions:
|
6491
6675
|
- ".tcl"
|
6492
6676
|
- ".adp"
|
6677
|
+
- ".sdc"
|
6493
6678
|
- ".tcl.in"
|
6494
6679
|
- ".tm"
|
6680
|
+
- ".xdc"
|
6681
|
+
aliases:
|
6682
|
+
- sdc
|
6683
|
+
- xdc
|
6495
6684
|
filenames:
|
6496
6685
|
- owh
|
6497
6686
|
- starfield
|
@@ -6791,12 +6980,9 @@ VBA:
|
|
6791
6980
|
- ".bas"
|
6792
6981
|
- ".cls"
|
6793
6982
|
- ".frm"
|
6794
|
-
- ".frx"
|
6795
6983
|
- ".vba"
|
6796
6984
|
tm_scope: source.vbnet
|
6797
6985
|
aliases:
|
6798
|
-
- vb6
|
6799
|
-
- visual basic 6
|
6800
6986
|
- visual basic for applications
|
6801
6987
|
ace_mode: text
|
6802
6988
|
codemirror_mode: vb
|
@@ -6947,6 +7133,25 @@ Visual Basic .NET:
|
|
6947
7133
|
codemirror_mode: vb
|
6948
7134
|
codemirror_mime_type: text/x-vb
|
6949
7135
|
language_id: 389
|
7136
|
+
Visual Basic 6.0:
|
7137
|
+
type: programming
|
7138
|
+
color: "#2c6353"
|
7139
|
+
extensions:
|
7140
|
+
- ".cls"
|
7141
|
+
- ".ctl"
|
7142
|
+
- ".Dsr"
|
7143
|
+
- ".frm"
|
7144
|
+
tm_scope: source.vbnet
|
7145
|
+
aliases:
|
7146
|
+
- vb6
|
7147
|
+
- vb 6
|
7148
|
+
- visual basic 6
|
7149
|
+
- visual basic classic
|
7150
|
+
- classic visual basic
|
7151
|
+
ace_mode: text
|
7152
|
+
codemirror_mode: vb
|
7153
|
+
codemirror_mime_type: text/x-vb
|
7154
|
+
language_id: 679594952
|
6950
7155
|
Volt:
|
6951
7156
|
type: programming
|
6952
7157
|
color: "#1F1F1F"
|
@@ -7622,6 +7827,16 @@ jq:
|
|
7622
7827
|
- ".jq"
|
7623
7828
|
tm_scope: source.jq
|
7624
7829
|
language_id: 905371884
|
7830
|
+
just:
|
7831
|
+
type: programming
|
7832
|
+
aliases:
|
7833
|
+
- Justfile
|
7834
|
+
color: "#384d54"
|
7835
|
+
tm_scope: source.just
|
7836
|
+
filenames:
|
7837
|
+
- Justfile
|
7838
|
+
ace_mode: text
|
7839
|
+
language_id: 128447695
|
7625
7840
|
kvlang:
|
7626
7841
|
type: markup
|
7627
7842
|
ace_mode: text
|