-
Notifications
You must be signed in to change notification settings - Fork 13
/
languages.yml
executable file
·7979 lines (7979 loc) · 133 KB
/
languages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Defines all Languages known to GitHub.
#
# fs_name - Optional field. Only necessary as a replacement for the sample directory name if the
# language name is not a valid filename under the Windows filesystem (e.g., if it
# contains an asterisk).
# type - Either data, programming, markup, prose, or nil
# aliases - An Array of additional aliases (implicitly
# includes name.downcase)
# ace_mode - A String name of the Ace Mode used for highlighting whenever
# a file is edited. This must match one of the filenames in http://git.io/3XO_Cg.
# Use "text" if a mode does not exist.
# codemirror_mode - A String name of the CodeMirror Mode used for highlighting whenever a file is edited.
# This must match a mode from https://git.io/vi9Fx
# codemirror_mime_type - A String name of the file mime type used for highlighting whenever a file is edited.
# This should match the `mime` associated with the mode from https://git.io/f4SoQ
# wrap - Boolean wrap to enable line wrapping (default: false)
# extensions - An Array of associated extensions (the first one is
# considered the primary extension, the others should be
# listed alphabetically)
# filenames - An Array of filenames commonly associated with the language
# interpreters - An Array of associated interpreters
# language_id - Integer used as a language-name-independent indexed field so that we can rename
# languages in Linguist without reindexing all the code on GitHub. Must not be
# changed for existing languages without the explicit permission of GitHub staff.
# color - CSS hex color to represent the language. Only used if type is "programming" or "markup".
# tm_scope - The TextMate scope that represents this programming
# language. This should match one of the scopes listed in
# the grammars.yml file. Use "none" if there is no grammar
# for this language.
# group - Name of the parent language. Languages in a group are counted
# in the statistics as the parent language.
#
# Any additions or modifications (even trivial) should have corresponding
# test changes in `test/test_blob.rb`.
#
# Please keep this list alphabetized. Capitalization comes before lowercase.
---
1C Enterprise:
type: programming
color: "#814CCC"
extensions:
- ".bsl"
- ".os"
tm_scope: source.bsl
ace_mode: text
language_id: 0
2-Dimensional Array:
type: data
color: "#38761D"
extensions:
- ".2da"
tm_scope: source.2da
ace_mode: text
language_id: 387204628
4D:
type: programming
color: "#004289"
extensions:
- ".4dm"
tm_scope: source.4dm
ace_mode: text
language_id: 577529595
ABAP:
type: programming
color: "#E8274B"
extensions:
- ".abap"
tm_scope: source.abap
ace_mode: abap
language_id: 1
ABAP CDS:
type: programming
color: "#555e25"
extensions:
- ".asddls"
tm_scope: source.abapcds
language_id: 452681853
ace_mode: text
ABNF:
type: data
ace_mode: text
extensions:
- ".abnf"
tm_scope: source.abnf
language_id: 429
AGS Script:
type: programming
color: "#B9D9FF"
aliases:
- ags
extensions:
- ".asc"
- ".ash"
tm_scope: source.c++
ace_mode: c_cpp
codemirror_mode: clike
codemirror_mime_type: text/x-c++src
language_id: 2
AIDL:
type: programming
color: "#34EB6B"
tm_scope: source.aidl
extensions:
- ".aidl"
ace_mode: text
interpreters:
- aidl
language_id: 451700185
AL:
type: programming
color: "#3AA2B5"
extensions:
- ".al"
tm_scope: source.al
ace_mode: text
language_id: 658971832
AMPL:
type: programming
color: "#E6EFBB"
extensions:
- ".ampl"
- ".mod"
tm_scope: source.ampl
ace_mode: text
language_id: 3
ANTLR:
type: programming
color: "#9DC3FF"
extensions:
- ".g4"
tm_scope: source.antlr
ace_mode: text
language_id: 4
API Blueprint:
type: markup
color: "#2ACCA8"
ace_mode: markdown
extensions:
- ".apib"
tm_scope: text.html.markdown.source.gfm.apib
language_id: 5
APL:
type: programming
color: "#5A8164"
extensions:
- ".apl"
- ".dyalog"
interpreters:
- apl
- aplx
- dyalog
tm_scope: source.apl
ace_mode: text
codemirror_mode: apl
codemirror_mime_type: text/apl
language_id: 6
ASL:
type: programming
ace_mode: text
extensions:
- ".asl"
- ".dsl"
tm_scope: source.asl
language_id: 124996147
ASN.1:
type: data
extensions:
- ".asn"
- ".asn1"
tm_scope: source.asn
ace_mode: text
codemirror_mode: asn.1
codemirror_mime_type: text/x-ttcn-asn
language_id: 7
ASP.NET:
type: programming
tm_scope: text.html.asp
color: "#9400ff"
aliases:
- aspx
- aspx-vb
extensions:
- ".asax"
- ".ascx"
- ".ashx"
- ".asmx"
- ".aspx"
- ".axd"
ace_mode: text
codemirror_mode: htmlembedded
codemirror_mime_type: application/x-aspx
language_id: 564186416
ATS:
type: programming
color: "#1ac620"
aliases:
- ats2
extensions:
- ".dats"
- ".hats"
- ".sats"
tm_scope: source.ats
ace_mode: ocaml
language_id: 9
ActionScript:
type: programming
tm_scope: source.actionscript.3
color: "#882B0F"
aliases:
- actionscript 3
- actionscript3
- as3
extensions:
- ".as"
ace_mode: actionscript
language_id: 10
Ada:
type: programming
color: "#02f88c"
extensions:
- ".adb"
- ".ada"
- ".ads"
aliases:
- ada95
- ada2005
tm_scope: source.ada
ace_mode: ada
language_id: 11
Adblock Filter List:
type: data
color: "#800000"
ace_mode: text
extensions:
- ".txt"
aliases:
- ad block filters
- ad block
- adb
- adblock
tm_scope: text.adblock
language_id: 884614762
Adobe Font Metrics:
type: data
color: "#fa0f00"
tm_scope: source.afm
extensions:
- ".afm"
aliases:
- acfm
- adobe composite font metrics
- adobe multiple font metrics
- amfm
ace_mode: text
language_id: 147198098
Agda:
type: programming
color: "#315665"
extensions:
- ".agda"
tm_scope: source.agda
ace_mode: text
language_id: 12
Alloy:
type: programming
color: "#64C800"
extensions:
- ".als"
tm_scope: source.alloy
ace_mode: text
language_id: 13
Alpine Abuild:
type: programming
color: "#0D597F"
group: Shell
aliases:
- abuild
- apkbuild
filenames:
- APKBUILD
tm_scope: source.shell
ace_mode: sh
codemirror_mode: shell
codemirror_mime_type: text/x-sh
language_id: 14
Altium Designer:
type: data
color: "#A89663"
aliases:
- altium
extensions:
- ".OutJob"
- ".PcbDoc"
- ".PrjPCB"
- ".SchDoc"
tm_scope: source.ini
ace_mode: ini
language_id: 187772328
AngelScript:
type: programming
color: "#C7D7DC"
extensions:
- ".as"
- ".angelscript"
tm_scope: source.angelscript
ace_mode: text
codemirror_mode: clike
codemirror_mime_type: text/x-c++src
language_id: 389477596
Ant Build System:
type: data
color: "#A9157E"
tm_scope: text.xml.ant
filenames:
- ant.xml
- build.xml
ace_mode: xml
codemirror_mode: xml
codemirror_mime_type: application/xml
language_id: 15
Antlers:
type: markup
color: "#ff269e"
extensions:
- ".antlers.html"
- ".antlers.php"
- ".antlers.xml"
tm_scope: text.html.statamic
ace_mode: text
language_id: 1067292663
ApacheConf:
type: data
color: "#d12127"
aliases:
- aconf
- apache
extensions:
- ".apacheconf"
- ".vhost"
filenames:
- ".htaccess"
- apache2.conf
- httpd.conf
tm_scope: source.apache-config
ace_mode: apache_conf
language_id: 16
Apex:
type: programming
color: "#1797c0"
extensions:
- ".cls"
tm_scope: source.java
ace_mode: java
codemirror_mode: clike
codemirror_mime_type: text/x-java
language_id: 17
Apollo Guidance Computer:
type: programming
color: "#0B3D91"
group: Assembly
extensions:
- ".agc"
tm_scope: source.agc
ace_mode: assembly_x86
language_id: 18
AppleScript:
type: programming
aliases:
- osascript
extensions:
- ".applescript"
- ".scpt"
interpreters:
- osascript
tm_scope: source.applescript
ace_mode: applescript
color: "#101F1F"
language_id: 19
Arc:
type: programming
color: "#aa2afe"
extensions:
- ".arc"
tm_scope: none
ace_mode: text
language_id: 20
AsciiDoc:
type: prose
color: "#73a0c5"
ace_mode: asciidoc
wrap: true
extensions:
- ".asciidoc"
- ".adoc"
- ".asc"
tm_scope: text.html.asciidoc
language_id: 22
AspectJ:
type: programming
color: "#a957b0"
extensions:
- ".aj"
tm_scope: source.aspectj
ace_mode: text
language_id: 23
Assembly:
type: programming
color: "#6E4C13"
aliases:
- asm
- nasm
extensions:
- ".asm"
- ".a51"
- ".i"
- ".inc"
- ".nas"
- ".nasm"
tm_scope: source.assembly
ace_mode: assembly_x86
language_id: 24
Astro:
type: markup
color: "#ff5a03"
extensions:
- ".astro"
tm_scope: source.astro
ace_mode: html
codemirror_mode: jsx
codemirror_mime_type: text/jsx
language_id: 578209015
Asymptote:
type: programming
color: "#ff0000"
extensions:
- ".asy"
interpreters:
- asy
tm_scope: source.c++
ace_mode: c_cpp
codemirror_mode: clike
codemirror_mime_type: text/x-kotlin
language_id: 591605007
Augeas:
type: programming
color: "#9CC134"
extensions:
- ".aug"
tm_scope: none
ace_mode: text
language_id: 25
AutoHotkey:
type: programming
color: "#6594b9"
aliases:
- ahk
extensions:
- ".ahk"
- ".ahkl"
tm_scope: source.ahk
ace_mode: autohotkey
language_id: 26
AutoIt:
type: programming
color: "#1C3552"
aliases:
- au3
- AutoIt3
- AutoItScript
extensions:
- ".au3"
tm_scope: source.autoit
ace_mode: autohotkey
language_id: 27
Avro IDL:
type: data
color: "#0040FF"
extensions:
- ".avdl"
tm_scope: source.avro
ace_mode: text
language_id: 785497837
Awk:
type: programming
color: "#c30e9b"
extensions:
- ".awk"
- ".auk"
- ".gawk"
- ".mawk"
- ".nawk"
interpreters:
- awk
- gawk
- mawk
- nawk
tm_scope: source.awk
ace_mode: text
language_id: 28
BASIC:
type: programming
extensions:
- ".bas"
tm_scope: source.basic
ace_mode: text
color: "#ff0000"
language_id: 28923963
Ballerina:
type: programming
extensions:
- ".bal"
tm_scope: source.ballerina
ace_mode: text
color: "#FF5000"
language_id: 720859680
Batchfile:
type: programming
aliases:
- bat
- batch
- dosbatch
- winbatch
extensions:
- ".bat"
- ".cmd"
tm_scope: source.batchfile
ace_mode: batchfile
color: "#C1F12E"
language_id: 29
Beef:
type: programming
color: "#a52f4e"
extensions:
- ".bf"
tm_scope: source.cs
ace_mode: csharp
codemirror_mode: clike
codemirror_mime_type: text/x-csharp
language_id: 545626333
Befunge:
type: programming
extensions:
- ".befunge"
- ".bf"
tm_scope: source.befunge
ace_mode: text
language_id: 30
Berry:
type: programming
extensions:
- ".be"
tm_scope: source.berry
ace_mode: text
color: "#15A13C"
aliases:
- be
language_id: 121855308
BibTeX:
type: markup
color: "#778899"
group: TeX
extensions:
- ".bib"
- ".bibtex"
tm_scope: text.bibtex
ace_mode: tex
codemirror_mode: stex
codemirror_mime_type: text/x-stex
language_id: 982188347
Bicep:
type: programming
color: "#519aba"
extensions:
- ".bicep"
tm_scope: source.bicep
ace_mode: text
language_id: 321200902
Bikeshed:
type: markup
color: "#5562ac"
extensions:
- ".bs"
tm_scope: source.csswg
ace_mode: html
codemirror_mode: htmlmixed
codemirror_mime_type: text/html
language_id: 1055528081
Bison:
type: programming
color: "#6A463F"
group: Yacc
tm_scope: source.yacc
extensions:
- ".bison"
ace_mode: text
language_id: 31
BitBake:
type: programming
color: "#00bce4"
tm_scope: none
extensions:
- ".bb"
ace_mode: text
language_id: 32
Blade:
type: markup
color: "#f7523f"
extensions:
- ".blade"
- ".blade.php"
tm_scope: text.html.php.blade
ace_mode: text
language_id: 33
BlitzBasic:
type: programming
color: "#00FFAE"
aliases:
- b3d
- blitz3d
- blitzplus
- bplus
extensions:
- ".bb"
- ".decls"
tm_scope: source.blitzmax
ace_mode: text
language_id: 34
BlitzMax:
type: programming
color: "#cd6400"
extensions:
- ".bmx"
aliases:
- bmax
tm_scope: source.blitzmax
ace_mode: text
language_id: 35
Bluespec:
type: programming
color: "#12223c"
extensions:
- ".bsv"
tm_scope: source.bsv
ace_mode: verilog
language_id: 36
Boo:
type: programming
color: "#d4bec1"
extensions:
- ".boo"
ace_mode: text
tm_scope: source.boo
language_id: 37
Boogie:
type: programming
color: "#c80fa0"
extensions:
- ".bpl"
interpreters:
- boogie
tm_scope: source.boogie
ace_mode: text
language_id: 955017407
Brainfuck:
type: programming
color: "#2F2530"
extensions:
- ".b"
- ".bf"
tm_scope: source.bf
ace_mode: text
codemirror_mode: brainfuck
codemirror_mime_type: text/x-brainfuck
language_id: 38
BrighterScript:
type: programming
color: "#66AABB"
extensions:
- ".bs"
tm_scope: source.brs
ace_mode: text
language_id: 943571030
Brightscript:
type: programming
color: "#662D91"
extensions:
- ".brs"
tm_scope: source.brs
ace_mode: text
language_id: 39
Browserslist:
type: data
color: "#ffd539"
filenames:
- ".browserslistrc"
- browserslist
tm_scope: text.browserslist
ace_mode: text
language_id: 153503348
C:
type: programming
color: "#555555"
extensions:
- ".c"
- ".cats"
- ".h"
- ".idc"
interpreters:
- tcc
tm_scope: source.c
ace_mode: c_cpp
codemirror_mode: clike
codemirror_mime_type: text/x-csrc
language_id: 41
C#:
type: programming
ace_mode: csharp
codemirror_mode: clike
codemirror_mime_type: text/x-csharp
tm_scope: source.cs
color: "#178600"
aliases:
- csharp
- cake
- cakescript
extensions:
- ".cs"
- ".cake"
- ".csx"
- ".linq"
language_id: 42
C++:
type: programming
tm_scope: source.c++
ace_mode: c_cpp
codemirror_mode: clike
codemirror_mime_type: text/x-c++src
color: "#f34b7d"
aliases:
- cpp
extensions:
- ".cpp"
- ".c++"
- ".cc"
- ".cp"
- ".cxx"
- ".h"
- ".h++"
- ".hh"
- ".hpp"
- ".hxx"
- ".inc"
- ".inl"
- ".ino"
- ".ipp"
- ".ixx"
- ".re"
- ".tcc"
- ".tpp"
language_id: 43
C-ObjDump:
type: data
extensions:
- ".c-objdump"
tm_scope: objdump.x86asm
ace_mode: assembly_x86
language_id: 44
C2hs Haskell:
type: programming
group: Haskell
aliases:
- c2hs
extensions:
- ".chs"
tm_scope: source.haskell
ace_mode: haskell
codemirror_mode: haskell
codemirror_mime_type: text/x-haskell
language_id: 45
CAP CDS:
type: programming
tm_scope: source.cds
color: "#0092d1"
aliases:
- cds
extensions:
- ".cds"
ace_mode: text
language_id: 390788699
CIL:
type: data
tm_scope: source.cil
extensions:
- ".cil"
ace_mode: text
language_id: 29176339
CLIPS:
type: programming
color: "#00A300"
extensions:
- ".clp"
tm_scope: source.clips
ace_mode: text
language_id: 46
CMake:
type: programming
color: "#DA3434"
extensions:
- ".cmake"
- ".cmake.in"
filenames:
- CMakeLists.txt
tm_scope: source.cmake
ace_mode: text
codemirror_mode: cmake
codemirror_mime_type: text/x-cmake
language_id: 47
COBOL:
type: programming
extensions:
- ".cob"
- ".cbl"
- ".ccp"
- ".cobol"
- ".cpy"
tm_scope: source.cobol
ace_mode: cobol
codemirror_mode: cobol
codemirror_mime_type: text/x-cobol
language_id: 48
CODEOWNERS:
type: data
filenames:
- CODEOWNERS
tm_scope: text.codeowners
ace_mode: gitignore
language_id: 321684729
COLLADA:
type: data
color: "#F1A42B"
extensions:
- ".dae"
tm_scope: text.xml
ace_mode: xml
codemirror_mode: xml
codemirror_mime_type: text/xml
language_id: 49
CSON:
type: data
color: "#244776"
tm_scope: source.coffee
ace_mode: coffee
codemirror_mode: coffeescript
codemirror_mime_type: text/x-coffeescript
extensions:
- ".cson"
language_id: 424
CSS:
type: markup
tm_scope: source.css
ace_mode: css
codemirror_mode: css
codemirror_mime_type: text/css
color: "#563d7c"
extensions:
- ".css"
language_id: 50
CSV:
type: data
color: "#237346"
ace_mode: text
tm_scope: none
extensions:
- ".csv"
language_id: 51
CUE:
type: programming
extensions:
- ".cue"
tm_scope: source.cue
ace_mode: text
color: "#5886E1"
language_id: 356063509
CWeb:
type: programming
color: "#00007a"
extensions:
- ".w"
tm_scope: none
ace_mode: text
language_id: 657332628
Cabal Config:
type: data
color: "#483465"
aliases:
- Cabal
extensions:
- ".cabal"
filenames:
- cabal.config
- cabal.project
ace_mode: haskell
codemirror_mode: haskell
codemirror_mime_type: text/x-haskell
tm_scope: source.cabal
language_id: 677095381
Cadence:
type: programming
color: "#00ef8b"
ace_mode: text
tm_scope: source.cadence
extensions:
- ".cdc"
language_id: 270184138
Cairo:
type: programming
color: "#ff4a48"
ace_mode: text
tm_scope: source.cairo
extensions:
- ".cairo"
language_id: 620599567
CameLIGO:
type: programming
color: "#3be133"
extensions:
- ".mligo"
tm_scope: source.mligo
ace_mode: ocaml
codemirror_mode: mllike
codemirror_mime_type: text/x-ocaml
group: LigoLANG
language_id: 829207807
Cap'n Proto:
type: programming
color: "#c42727"
tm_scope: source.capnp
extensions:
- ".capnp"
ace_mode: text
language_id: 52
CartoCSS:
type: programming
aliases:
- Carto
extensions:
- ".mss"
ace_mode: text
tm_scope: source.css.mss
language_id: 53
Ceylon:
type: programming
color: "#dfa535"
extensions:
- ".ceylon"
tm_scope: source.ceylon
ace_mode: text
language_id: 54
Chapel:
type: programming
color: "#8dc63f"
aliases:
- chpl
extensions:
- ".chpl"
tm_scope: source.chapel
ace_mode: text
language_id: 55
Charity:
type: programming
extensions:
- ".ch"
tm_scope: none
ace_mode: text
language_id: 56
Checksums:
type: data
tm_scope: text.checksums
aliases:
- checksum
- hash
- hashes
- sum
- sums
filenames:
- MD5SUMS
- SHA1SUMS
- SHA256SUMS
- SHA256SUMS.txt
- SHA512SUMS
- checksums.txt
- cksums
- md5sum.txt
extensions:
- ".crc32"
- ".md2"
- ".md4"
- ".md5"
- ".sha1"
- ".sha2"