-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitattributes
1655 lines (1655 loc) · 52.2 KB
/
.gitattributes
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
*.bsl linguist-detectable=true
*.os linguist-detectable=true
*.2da linguist-detectable=true
*.4dm linguist-detectable=true
*.abap linguist-detectable=true
*.asddls linguist-detectable=true
*.abnf linguist-detectable=true
*.asc linguist-detectable=true
*.ash linguist-detectable=true
*.aidl linguist-detectable=true
*.al linguist-detectable=true
*.ampl linguist-detectable=true
*.mod linguist-detectable=true
*.g4 linguist-detectable=true
*.apib linguist-detectable=true
*.apl linguist-detectable=true
*.dyalog linguist-detectable=true
*.asl linguist-detectable=true
*.dsl linguist-detectable=true
*.asn linguist-detectable=true
*.asn1 linguist-detectable=true
*.asax linguist-detectable=true
*.ascx linguist-detectable=true
*.ashx linguist-detectable=true
*.asmx linguist-detectable=true
*.aspx linguist-detectable=true
*.axd linguist-detectable=true
*.dats linguist-detectable=true
*.hats linguist-detectable=true
*.sats linguist-detectable=true
*.as linguist-detectable=true
*.adb linguist-detectable=true
*.ada linguist-detectable=true
*.ads linguist-detectable=true
*.txt linguist-detectable=true
*.afm linguist-detectable=true
*.agda linguist-detectable=true
*.als linguist-detectable=true
*.OutJob linguist-detectable=true
*.PcbDoc linguist-detectable=true
*.PrjPCB linguist-detectable=true
*.SchDoc linguist-detectable=true
*.as linguist-detectable=true
*.angelscript linguist-detectable=true
*.antlers.html linguist-detectable=true
*.antlers.php linguist-detectable=true
*.antlers.xml linguist-detectable=true
*.apacheconf linguist-detectable=true
*.vhost linguist-detectable=true
*.htaccess linguist-detectable=true
*.cls linguist-detectable=true
*.agc linguist-detectable=true
*.applescript linguist-detectable=true
*.scpt linguist-detectable=true
*.arc linguist-detectable=true
*.asciidoc linguist-detectable=true
*.adoc linguist-detectable=true
*.asc linguist-detectable=true
*.aj linguist-detectable=true
*.asm linguist-detectable=true
*.a51 linguist-detectable=true
*.i linguist-detectable=true
*.inc linguist-detectable=true
*.nas linguist-detectable=true
*.nasm linguist-detectable=true
*.astro linguist-detectable=true
*.asy linguist-detectable=true
*.aug linguist-detectable=true
*.ahk linguist-detectable=true
*.ahkl linguist-detectable=true
*.au3 linguist-detectable=true
*.avdl linguist-detectable=true
*.awk linguist-detectable=true
*.auk linguist-detectable=true
*.gawk linguist-detectable=true
*.mawk linguist-detectable=true
*.nawk linguist-detectable=true
*.bas linguist-detectable=true
*.bal linguist-detectable=true
*.bat linguist-detectable=true
*.cmd linguist-detectable=true
*.bf linguist-detectable=true
*.befunge linguist-detectable=true
*.bf linguist-detectable=true
*.be linguist-detectable=true
*.bib linguist-detectable=true
*.bibtex linguist-detectable=true
*.bicep linguist-detectable=true
*.bs linguist-detectable=true
*.bison linguist-detectable=true
*.bb linguist-detectable=true
*.blade linguist-detectable=true
*.blade.php linguist-detectable=true
*.bb linguist-detectable=true
*.decls linguist-detectable=true
*.bmx linguist-detectable=true
*.bsv linguist-detectable=true
*.boo linguist-detectable=true
*.bpl linguist-detectable=true
*.b linguist-detectable=true
*.bf linguist-detectable=true
*.bs linguist-detectable=true
*.brs linguist-detectable=true
*.browserslistrc linguist-detectable=true
*.c linguist-detectable=true
*.cats linguist-detectable=true
*.h linguist-detectable=true
*.idc linguist-detectable=true
*.cs linguist-detectable=true
*.cake linguist-detectable=true
*.csx linguist-detectable=true
*.linq linguist-detectable=true
*.cpp linguist-detectable=true
*.c++ linguist-detectable=true
*.cc linguist-detectable=true
*.cp linguist-detectable=true
*.cppm linguist-detectable=true
*.cxx linguist-detectable=true
*.h linguist-detectable=true
*.h++ linguist-detectable=true
*.hh linguist-detectable=true
*.hpp linguist-detectable=true
*.hxx linguist-detectable=true
*.inc linguist-detectable=true
*.inl linguist-detectable=true
*.ino linguist-detectable=true
*.ipp linguist-detectable=true
*.ixx linguist-detectable=true
*.re linguist-detectable=true
*.tcc linguist-detectable=true
*.tpp linguist-detectable=true
*.c-objdump linguist-detectable=true
*.chs linguist-detectable=true
*.cds linguist-detectable=true
*.cil linguist-detectable=true
*.clp linguist-detectable=true
*.cmake linguist-detectable=true
*.cmake.in linguist-detectable=true
*.cob linguist-detectable=true
*.cbl linguist-detectable=true
*.ccp linguist-detectable=true
*.cobol linguist-detectable=true
*.cpy linguist-detectable=true
*.dae linguist-detectable=true
*.cson linguist-detectable=true
*.css linguist-detectable=true
*.csv linguist-detectable=true
*.cue linguist-detectable=true
*.w linguist-detectable=true
*.cabal linguist-detectable=true
*.cdc linguist-detectable=true
*.cairo linguist-detectable=true
*.mligo linguist-detectable=true
*.capnp linguist-detectable=true
*.mss linguist-detectable=true
*.ceylon linguist-detectable=true
*.chpl linguist-detectable=true
*.ch linguist-detectable=true
*.crc32 linguist-detectable=true
*.md2 linguist-detectable=true
*.md4 linguist-detectable=true
*.md5 linguist-detectable=true
*.sha1 linguist-detectable=true
*.sha2 linguist-detectable=true
*.sha224 linguist-detectable=true
*.sha256 linguist-detectable=true
*.sha256sum linguist-detectable=true
*.sha3 linguist-detectable=true
*.sha384 linguist-detectable=true
*.sha512 linguist-detectable=true
*.ck linguist-detectable=true
*.circom linguist-detectable=true
*.cirru linguist-detectable=true
*.clw linguist-detectable=true
*.clar linguist-detectable=true
*.asp linguist-detectable=true
*.icl linguist-detectable=true
*.dcl linguist-detectable=true
*.click linguist-detectable=true
*.clj linguist-detectable=true
*.bb linguist-detectable=true
*.boot linguist-detectable=true
*.cl2 linguist-detectable=true
*.cljc linguist-detectable=true
*.cljs linguist-detectable=true
*.cljs.hl linguist-detectable=true
*.cljscm linguist-detectable=true
*.cljx linguist-detectable=true
*.hic linguist-detectable=true
*.soy linguist-detectable=true
*.conllu linguist-detectable=true
*.conll linguist-detectable=true
*.ql linguist-detectable=true
*.qll linguist-detectable=true
*.coffee linguist-detectable=true
*._coffee linguist-detectable=true
*.cake linguist-detectable=true
*.cjsx linguist-detectable=true
*.iced linguist-detectable=true
*.cfm linguist-detectable=true
*.cfml linguist-detectable=true
*.cfc linguist-detectable=true
*.lisp linguist-detectable=true
*.asd linguist-detectable=true
*.cl linguist-detectable=true
*.l linguist-detectable=true
*.lsp linguist-detectable=true
*.ny linguist-detectable=true
*.podsl linguist-detectable=true
*.sexp linguist-detectable=true
*.cwl linguist-detectable=true
*.cp linguist-detectable=true
*.cps linguist-detectable=true
*.cl linguist-detectable=true
*.coq linguist-detectable=true
*.v linguist-detectable=true
*.cppobjdump linguist-detectable=true
*.c++-objdump linguist-detectable=true
*.c++objdump linguist-detectable=true
*.cpp-objdump linguist-detectable=true
*.cxx-objdump linguist-detectable=true
*.creole linguist-detectable=true
*.cr linguist-detectable=true
*.orc linguist-detectable=true
*.udo linguist-detectable=true
*.csd linguist-detectable=true
*.sco linguist-detectable=true
*.cu linguist-detectable=true
*.cuh linguist-detectable=true
*.cue linguist-detectable=true
*.curry linguist-detectable=true
*.cy linguist-detectable=true
*.cyp linguist-detectable=true
*.cypher linguist-detectable=true
*.pyx linguist-detectable=true
*.pxd linguist-detectable=true
*.pxi linguist-detectable=true
*.d linguist-detectable=true
*.di linguist-detectable=true
*.d-objdump linguist-detectable=true
*.com linguist-detectable=true
*.dm linguist-detectable=true
*.zone linguist-detectable=true
*.arpa linguist-detectable=true
*.d linguist-detectable=true
*.dfy linguist-detectable=true
*.darcspatch linguist-detectable=true
*.dpatch linguist-detectable=true
*.dart linguist-detectable=true
*.dwl linguist-detectable=true
*.dsc linguist-detectable=true
*.dsc linguist-detectable=true
*.dhall linguist-detectable=true
*.diff linguist-detectable=true
*.patch linguist-detectable=true
*.x linguist-detectable=true
*.dockerfile linguist-detectable=true
*.djs linguist-detectable=true
*.env linguist-detectable=true
*.env linguist-detectable=true
*.env.ci linguist-detectable=true
*.env.dev linguist-detectable=true
*.env.development linguist-detectable=true
*.env.development.local linguist-detectable=true
*.env.example linguist-detectable=true
*.env.local linguist-detectable=true
*.env.prod linguist-detectable=true
*.env.production linguist-detectable=true
*.env.staging linguist-detectable=true
*.env.test linguist-detectable=true
*.env.testing linguist-detectable=true
*.dylan linguist-detectable=true
*.dyl linguist-detectable=true
*.intr linguist-detectable=true
*.lid linguist-detectable=true
*.e linguist-detectable=true
*.eml linguist-detectable=true
*.mbox linguist-detectable=true
*.ebnf linguist-detectable=true
*.ecl linguist-detectable=true
*.eclxml linguist-detectable=true
*.ecl linguist-detectable=true
*.ejs linguist-detectable=true
*.ect linguist-detectable=true
*.ejs.t linguist-detectable=true
*.jst linguist-detectable=true
*.eq linguist-detectable=true
*.sch linguist-detectable=true
*.brd linguist-detectable=true
*.eb linguist-detectable=true
*.epj linguist-detectable=true
*.html linguist-detectable=true
*.editorconfig linguist-detectable=true
*.editorconfig linguist-detectable=true
*.edc linguist-detectable=true
*.e linguist-detectable=true
*.ex linguist-detectable=true
*.exs linguist-detectable=true
*.elm linguist-detectable=true
*.elv linguist-detectable=true
*.abbrev_defs linguist-detectable=true
*.emacs linguist-detectable=true
*.emacs.desktop linguist-detectable=true
*.gnus linguist-detectable=true
*.spacemacs linguist-detectable=true
*.viper linguist-detectable=true
*.el linguist-detectable=true
*.emacs linguist-detectable=true
*.emacs.desktop linguist-detectable=true
*.em linguist-detectable=true
*.emberscript linguist-detectable=true
*.erl linguist-detectable=true
*.app.src linguist-detectable=true
*.es linguist-detectable=true
*.escript linguist-detectable=true
*.hrl linguist-detectable=true
*.xrl linguist-detectable=true
*.yrl linguist-detectable=true
*.e linguist-detectable=true
*.ex linguist-detectable=true
*.fs linguist-detectable=true
*.fsi linguist-detectable=true
*.fsx linguist-detectable=true
*.fst linguist-detectable=true
*.fsti linguist-detectable=true
*.flf linguist-detectable=true
*.fx linguist-detectable=true
*.flux linguist-detectable=true
*.factor linguist-detectable=true
*.factor-boot-rc linguist-detectable=true
*.factor-rc linguist-detectable=true
*.fy linguist-detectable=true
*.fancypack linguist-detectable=true
*.fan linguist-detectable=true
*.dsp linguist-detectable=true
*.fnl linguist-detectable=true
*.f linguist-detectable=true
*.fs linguist-detectable=true
*.ftl linguist-detectable=true
*.for linguist-detectable=true
*.eam.fs linguist-detectable=true
*.fth linguist-detectable=true
*.th linguist-detectable=true
*.f linguist-detectable=true
*.for linguist-detectable=true
*.forth linguist-detectable=true
*.fr linguist-detectable=true
*.frt linguist-detectable=true
*.fs linguist-detectable=true
*.f linguist-detectable=true
*.f7 linguist-detectable=true
*.for linguist-detectable=true
*.fpp linguist-detectable=true
*.f0 linguist-detectable=true
*.f3 linguist-detectable=true
*.f8 linguist-detectable=true
*.f5 linguist-detectable=true
*.bi linguist-detectable=true
*.bas linguist-detectable=true
*.ftl linguist-detectable=true
*.fr linguist-detectable=true
*.fut linguist-detectable=true
*.g linguist-detectable=true
*.cnc linguist-detectable=true
*.gco linguist-detectable=true
*.gcode linguist-detectable=true
*.gaml linguist-detectable=true
*.gms linguist-detectable=true
*.g linguist-detectable=true
*.gap linguist-detectable=true
*.gd linguist-detectable=true
*.gi linguist-detectable=true
*.tst linguist-detectable=true
*.md linguist-detectable=true
*.gdb linguist-detectable=true
*.gdbinit linguist-detectable=true
*.gd linguist-detectable=true
*.ged linguist-detectable=true
*.glsl linguist-detectable=true
*.fp linguist-detectable=true
*.frag linguist-detectable=true
*.frg linguist-detectable=true
*.fs linguist-detectable=true
*.fsh linguist-detectable=true
*.fshader linguist-detectable=true
*.geo linguist-detectable=true
*.geom linguist-detectable=true
*.glslf linguist-detectable=true
*.glslv linguist-detectable=true
*.gs linguist-detectable=true
*.gshader linguist-detectable=true
*.rchit linguist-detectable=true
*.rmiss linguist-detectable=true
*.shader linguist-detectable=true
*.tesc linguist-detectable=true
*.tese linguist-detectable=true
*.vert linguist-detectable=true
*.vrx linguist-detectable=true
*.vsh linguist-detectable=true
*.vshader linguist-detectable=true
*.gn linguist-detectable=true
*.gni linguist-detectable=true
*.gn linguist-detectable=true
*.gsc linguist-detectable=true
*.csc linguist-detectable=true
*.gsh linguist-detectable=true
*.gml linguist-detectable=true
*.gmi linguist-detectable=true
*.gl linguist-detectable=true
*.per linguist-detectable=true
*.gs linguist-detectable=true
*.kid linguist-detectable=true
*.ebuild linguist-detectable=true
*.eclass linguist-detectable=true
*.gbr linguist-detectable=true
*.cmp linguist-detectable=true
*.gbl linguist-detectable=true
*.gbo linguist-detectable=true
*.gbp linguist-detectable=true
*.gbs linguist-detectable=true
*.gko linguist-detectable=true
*.gml linguist-detectable=true
*.gpb linguist-detectable=true
*.gpt linguist-detectable=true
*.gtl linguist-detectable=true
*.gto linguist-detectable=true
*.gtp linguist-detectable=true
*.gts linguist-detectable=true
*.ncl linguist-detectable=true
*.sol linguist-detectable=true
*.po linguist-detectable=true
*.pot linguist-detectable=true
*.feature linguist-detectable=true
*.story linguist-detectable=true
*.gitattributes linguist-detectable=true
*.gitconfig linguist-detectable=true
*.gitconfig linguist-detectable=true
*.gitmodules linguist-detectable=true
*.git-blame-ignore-revs linguist-detectable=true
*.gleam linguist-detectable=true
*.glf linguist-detectable=true
*.bdf linguist-detectable=true
*.gp linguist-detectable=true
*.gnu linguist-detectable=true
*.gnuplot linguist-detectable=true
*.p linguist-detectable=true
*.plot linguist-detectable=true
*.plt linguist-detectable=true
*.go linguist-detectable=true
*.gdnlib linguist-detectable=true
*.gdns linguist-detectable=true
*.tres linguist-detectable=true
*.tscn linguist-detectable=true
*.golo linguist-detectable=true
*.gs linguist-detectable=true
*.gst linguist-detectable=true
*.gsx linguist-detectable=true
*.vark linguist-detectable=true
*.grace linguist-detectable=true
*.gradle linguist-detectable=true
*.gf linguist-detectable=true
*.gml linguist-detectable=true
*.graphql linguist-detectable=true
*.gql linguist-detectable=true
*.graphqls linguist-detectable=true
*.dot linguist-detectable=true
*.gv linguist-detectable=true
*.groovy linguist-detectable=true
*.grt linguist-detectable=true
*.gtpl linguist-detectable=true
*.gvy linguist-detectable=true
*.gsp linguist-detectable=true
*.cfg linguist-detectable=true
*.hcl linguist-detectable=true
*.nomad linguist-detectable=true
*.tf linguist-detectable=true
*.tfvars linguist-detectable=true
*.workflow linguist-detectable=true
*.hlsl linguist-detectable=true
*.cginc linguist-detectable=true
*.fx linguist-detectable=true
*.fxh linguist-detectable=true
*.hlsli linguist-detectable=true
*.hocon linguist-detectable=true
*.html linguist-detectable=true
*.hta linguist-detectable=true
*.htm linguist-detectable=true
*.html.hl linguist-detectable=true
*.inc linguist-detectable=true
*.xht linguist-detectable=true
*.xhtml linguist-detectable=true
*.ecr linguist-detectable=true
*.eex linguist-detectable=true
*.html.heex linguist-detectable=true
*.html.leex linguist-detectable=true
*.erb linguist-detectable=true
*.erb.deface linguist-detectable=true
*.rhtml linguist-detectable=true
*.phtml linguist-detectable=true
*.cshtml linguist-detectable=true
*.razor linguist-detectable=true
*.http linguist-detectable=true
*.hxml linguist-detectable=true
*.hack linguist-detectable=true
*.hh linguist-detectable=true
*.hhi linguist-detectable=true
*.php linguist-detectable=true
*.haml linguist-detectable=true
*.haml.deface linguist-detectable=true
*.handlebars linguist-detectable=true
*.hbs linguist-detectable=true
*.hb linguist-detectable=true
*.hs linguist-detectable=true
*.hs-boot linguist-detectable=true
*.hsc linguist-detectable=true
*.hx linguist-detectable=true
*.hxsl linguist-detectable=true
*.q linguist-detectable=true
*.hql linguist-detectable=true
*.hc linguist-detectable=true
*.hy linguist-detectable=true
*.bf linguist-detectable=true
*.pro linguist-detectable=true
*.dlm linguist-detectable=true
*.ipf linguist-detectable=true
*.ini linguist-detectable=true
*.cfg linguist-detectable=true
*.cnf linguist-detectable=true
*.dof linguist-detectable=true
*.lektorproject linguist-detectable=true
*.prefs linguist-detectable=true
*.pro linguist-detectable=true
*.properties linguist-detectable=true
*.url linguist-detectable=true
*.coveragerc linguist-detectable=true
*.flake8 linguist-detectable=true
*.pylintrc linguist-detectable=true
*.irclog linguist-detectable=true
*.weechatlog linguist-detectable=true
*.idr linguist-detectable=true
*.lidr linguist-detectable=true
*.gitignore linguist-detectable=true
*.atomignore linguist-detectable=true
*.babelignore linguist-detectable=true
*.bzrignore linguist-detectable=true
*.coffeelintignore linguist-detectable=true
*.cvsignore linguist-detectable=true
*.dockerignore linguist-detectable=true
*.eleventyignore linguist-detectable=true
*.eslintignore linguist-detectable=true
*.gitignore linguist-detectable=true
*.markdownlintignore linguist-detectable=true
*.nodemonignore linguist-detectable=true
*.npmignore linguist-detectable=true
*.prettierignore linguist-detectable=true
*.stylelintignore linguist-detectable=true
*.vercelignore linguist-detectable=true
*.vscodeignore linguist-detectable=true
*.ijm linguist-detectable=true
*.imba linguist-detectable=true
*.ni linguist-detectable=true
*.ix linguist-detectable=true
*.ink linguist-detectable=true
*.iss linguist-detectable=true
*.isl linguist-detectable=true
*.io linguist-detectable=true
*.ik linguist-detectable=true
*.thy linguist-detectable=true
*.ijs linguist-detectable=true
*.jcl linguist-detectable=true
*.flex linguist-detectable=true
*.jflex linguist-detectable=true
*.json linguist-detectable=true
*.DForm linguist-detectable=true
*.DProject linguist-detectable=true
*.avsc linguist-detectable=true
*.geojson linguist-detectable=true
*.gltf linguist-detectable=true
*.har linguist-detectable=true
*.ice linguist-detectable=true
*.JSON-tmLanguage linguist-detectable=true
*.jsonl linguist-detectable=true
*.mcmeta linguist-detectable=true
*.tfstate linguist-detectable=true
*.tfstate.backup linguist-detectable=true
*.topojson linguist-detectable=true
*.webapp linguist-detectable=true
*.webmanifest linguist-detectable=true
*.yy linguist-detectable=true
*.yyp linguist-detectable=true
*.all-contributorsrc linguist-detectable=true
*.arcconfig linguist-detectable=true
*.auto-changelog linguist-detectable=true
*.crc linguist-detectable=true
*.htmlhintrc linguist-detectable=true
*.imgbotconfig linguist-detectable=true
*.nycrc linguist-detectable=true
*.tern-config linguist-detectable=true
*.tern-project linguist-detectable=true
*.watchmanconfig linguist-detectable=true
*.jsonc linguist-detectable=true
*.code-snippets linguist-detectable=true
*.sublime-build linguist-detectable=true
*.sublime-commands linguist-detectable=true
*.sublime-completions linguist-detectable=true
*.sublime-keymap linguist-detectable=true
*.sublime-macro linguist-detectable=true
*.sublime-menu linguist-detectable=true
*.sublime-mousemap linguist-detectable=true
*.sublime-project linguist-detectable=true
*.sublime-settings linguist-detectable=true
*.sublime-theme linguist-detectable=true
*.sublime-workspace linguist-detectable=true
*.sublime_metrics linguist-detectable=true
*.sublime_session linguist-detectable=true
*.babelrc linguist-detectable=true
*.devcontainer.json linguist-detectable=true
*.eslintrc.json linguist-detectable=true
*.jscsrc linguist-detectable=true
*.jshintrc linguist-detectable=true
*.jslintrc linguist-detectable=true
*.json5 linguist-detectable=true
*.jsonld linguist-detectable=true
*.jq linguist-detectable=true
*.janet linguist-detectable=true
*.j linguist-detectable=true
*.java linguist-detectable=true
*.jav linguist-detectable=true
*.jsh linguist-detectable=true
*.properties linguist-detectable=true
*.jsp linguist-detectable=true
*.tag linguist-detectable=true
*.js linguist-detectable=true
*._js linguist-detectable=true
*.bones linguist-detectable=true
*.cjs linguist-detectable=true
*.es linguist-detectable=true
*.es6 linguist-detectable=true
*.frag linguist-detectable=true
*.gs linguist-detectable=true
*.jake linguist-detectable=true
*.javascript linguist-detectable=true
*.jsb linguist-detectable=true
*.jscad linguist-detectable=true
*.jsfl linguist-detectable=true
*.jslib linguist-detectable=true
*.jsm linguist-detectable=true
*.jspre linguist-detectable=true
*.jss linguist-detectable=true
*.jsx linguist-detectable=true
*.mjs linguist-detectable=true
*.njs linguist-detectable=true
*.pac linguist-detectable=true
*.sjs linguist-detectable=true
*.ssjs linguist-detectable=true
*.xsjs linguist-detectable=true
*.xsjslib linguist-detectable=true
*.js.erb linguist-detectable=true
*.snap linguist-detectable=true
*.mps linguist-detectable=true
*.mpl linguist-detectable=true
*.msd linguist-detectable=true
*.jinja linguist-detectable=true
*.j2 linguist-detectable=true
*.jinja2 linguist-detectable=true
*.jison linguist-detectable=true
*.jisonlex linguist-detectable=true
*.ol linguist-detectable=true
*.iol linguist-detectable=true
*.jsonnet linguist-detectable=true
*.libsonnet linguist-detectable=true
*.jl linguist-detectable=true
*.ipynb linguist-detectable=true
*.krl linguist-detectable=true
*.ksy linguist-detectable=true
*.kak linguist-detectable=true
*.ks linguist-detectable=true
*.kicad_pcb linguist-detectable=true
*.kicad_mod linguist-detectable=true
*.kicad_wks linguist-detectable=true
*.brd linguist-detectable=true
*.kicad_sch linguist-detectable=true
*.sch linguist-detectable=true
*.ks linguist-detectable=true
*.kit linguist-detectable=true
*.kt linguist-detectable=true
*.ktm linguist-detectable=true
*.kts linguist-detectable=true
*.csl linguist-detectable=true
*.kql linguist-detectable=true
*.lfe linguist-detectable=true
*.ll linguist-detectable=true
*.lol linguist-detectable=true
*.lsl linguist-detectable=true
*.lslp linguist-detectable=true
*.asy linguist-detectable=true
*.lvproj linguist-detectable=true
*.lvclass linguist-detectable=true
*.lvlib linguist-detectable=true
*.lark linguist-detectable=true
*.lasso linguist-detectable=true
*.las linguist-detectable=true
*.lasso8 linguist-detectable=true
*.lasso9 linguist-detectable=true
*.latte linguist-detectable=true
*.lean linguist-detectable=true
*.hlean linguist-detectable=true
*.less linguist-detectable=true
*.l linguist-detectable=true
*.lex linguist-detectable=true
*.ligo linguist-detectable=true
*.ly linguist-detectable=true
*.ily linguist-detectable=true
*.b linguist-detectable=true
*.m linguist-detectable=true
*.ld linguist-detectable=true
*.lds linguist-detectable=true
*.x linguist-detectable=true
*.mod linguist-detectable=true
*.liquid linguist-detectable=true
*.lagda linguist-detectable=true
*.litcoffee linguist-detectable=true
*.coffee.md linguist-detectable=true
*.lhs linguist-detectable=true
*.ls linguist-detectable=true
*._ls linguist-detectable=true
*.xm linguist-detectable=true
*.x linguist-detectable=true
*.xi linguist-detectable=true
*.lgt linguist-detectable=true
*.logtalk linguist-detectable=true
*.lookml linguist-detectable=true
*.model.lkml linguist-detectable=true
*.view.lkml linguist-detectable=true
*.ls linguist-detectable=true
*.lua linguist-detectable=true
*.fcgi linguist-detectable=true
*.nse linguist-detectable=true
*.p8 linguist-detectable=true
*.pd_lua linguist-detectable=true
*.rbxs linguist-detectable=true
*.rockspec linguist-detectable=true
*.wlua linguist-detectable=true
*.luacheckrc linguist-detectable=true
*.mumps linguist-detectable=true
*.m linguist-detectable=true
*.m4 linguist-detectable=true
*.mc linguist-detectable=true
*.m4 linguist-detectable=true
*.matlab linguist-detectable=true
*.m linguist-detectable=true
*.ms linguist-detectable=true
*.mcr linguist-detectable=true
*.mlir linguist-detectable=true
*.mq4 linguist-detectable=true
*.mqh linguist-detectable=true
*.mq5 linguist-detectable=true
*.mqh linguist-detectable=true
*.mtml linguist-detectable=true
*.muf linguist-detectable=true
*.m linguist-detectable=true
*.m2 linguist-detectable=true
*.mak linguist-detectable=true
*.d linguist-detectable=true
*.make linguist-detectable=true
*.makefile linguist-detectable=true
*.mk linguist-detectable=true
*.mkfile linguist-detectable=true
*.mako linguist-detectable=true
*.mao linguist-detectable=true
*.md linguist-detectable=true
*.livemd linguist-detectable=true
*.markdown linguist-detectable=true
*.mdown linguist-detectable=true
*.mdwn linguist-detectable=true
*.mdx linguist-detectable=true
*.mkd linguist-detectable=true
*.mkdn linguist-detectable=true
*.mkdown linguist-detectable=true
*.ronn linguist-detectable=true
*.scd linguist-detectable=true
*.workbook linguist-detectable=true
*.marko linguist-detectable=true
*.mask linguist-detectable=true
*.mathematica linguist-detectable=true
*.cdf linguist-detectable=true
*.m linguist-detectable=true
*.ma linguist-detectable=true
*.mt linguist-detectable=true
*.nb linguist-detectable=true
*.nbp linguist-detectable=true
*.wl linguist-detectable=true
*.wlt linguist-detectable=true
*.maxpat linguist-detectable=true
*.maxhelp linguist-detectable=true
*.maxproj linguist-detectable=true
*.mxt linguist-detectable=true
*.pat linguist-detectable=true
*.m linguist-detectable=true
*.moo linguist-detectable=true
*.mmd linguist-detectable=true
*.mermaid linguist-detectable=true
*.metal linguist-detectable=true
*.dsp linguist-detectable=true
*.sln linguist-detectable=true
*.minid linguist-detectable=true
*.yaml linguist-detectable=true
*.yml linguist-detectable=true
*.mint linguist-detectable=true
*.druby linguist-detectable=true
*.duby linguist-detectable=true
*.mirah linguist-detectable=true
*.mo linguist-detectable=true
*.mod linguist-detectable=true
*.i3 linguist-detectable=true
*.ig linguist-detectable=true
*.m3 linguist-detectable=true
*.mg linguist-detectable=true
*.mms linguist-detectable=true
*.mmk linguist-detectable=true
*.monkey linguist-detectable=true
*.monkey2 linguist-detectable=true
*.mc linguist-detectable=true
*.moo linguist-detectable=true
*.moon linguist-detectable=true
*.mo linguist-detectable=true
*.asm linguist-detectable=true
*.i linguist-detectable=true
*.inc linguist-detectable=true
*.s linguist-detectable=true
*.x8 linguist-detectable=true
*.move linguist-detectable=true
*.muse linguist-detectable=true
*.mustache linguist-detectable=true
*.myt linguist-detectable=true
*.nasl linguist-detectable=true
*.inc linguist-detectable=true
*.ncl linguist-detectable=true
*.neon linguist-detectable=true
*.nl linguist-detectable=true
*.npmrc linguist-detectable=true
*.nsi linguist-detectable=true
*.nsh linguist-detectable=true
*.nss linguist-detectable=true
*.nas linguist-detectable=true
*.ne linguist-detectable=true
*.nearley linguist-detectable=true
*.n linguist-detectable=true
*.axs linguist-detectable=true
*.axi linguist-detectable=true
*.axs.erb linguist-detectable=true
*.axi.erb linguist-detectable=true
*.nlogo linguist-detectable=true
*.nl linguist-detectable=true
*.lisp linguist-detectable=true
*.lsp linguist-detectable=true
*.nf linguist-detectable=true
*.nginx linguist-detectable=true
*.nginxconf linguist-detectable=true
*.vhost linguist-detectable=true
*.nim linguist-detectable=true
*.nim.cfg linguist-detectable=true
*.nimble linguist-detectable=true
*.nimrod linguist-detectable=true
*.nims linguist-detectable=true
*.ninja linguist-detectable=true
*.nit linguist-detectable=true
*.nix linguist-detectable=true
*.nu linguist-detectable=true
*.numpy linguist-detectable=true
*.numpyw linguist-detectable=true
*.numsc linguist-detectable=true
*.njk linguist-detectable=true
*.json linguist-detectable=true
*.yaml linguist-detectable=true
*.yml linguist-detectable=true
*.json linguist-detectable=true
*.yaml linguist-detectable=true
*.yml linguist-detectable=true
*.ml linguist-detectable=true
*.eliom linguist-detectable=true
*.eliomi linguist-detectable=true
*.ml4 linguist-detectable=true
*.mli linguist-detectable=true
*.mll linguist-detectable=true
*.mly linguist-detectable=true
*.objdump linguist-detectable=true
*.odin linguist-detectable=true
*.cls linguist-detectable=true
*.m linguist-detectable=true
*.h linguist-detectable=true
*.mm linguist-detectable=true
*.j linguist-detectable=true
*.sj linguist-detectable=true
*.odin linguist-detectable=true
*.omgrofl linguist-detectable=true
*.opa linguist-detectable=true
*.opal linguist-detectable=true
*.rego linguist-detectable=true
*.cl linguist-detectable=true
*.opencl linguist-detectable=true
*.p linguist-detectable=true
*.cls linguist-detectable=true
*.w linguist-detectable=true
*.qasm linguist-detectable=true
*.scad linguist-detectable=true
*.plist linguist-detectable=true
*.glyphs linguist-detectable=true
*.fea linguist-detectable=true
*.ackrc linguist-detectable=true
*.org linguist-detectable=true
*.ox linguist-detectable=true
*.oxh linguist-detectable=true
*.oxo linguist-detectable=true
*.oxygene linguist-detectable=true
*.oz linguist-detectable=true
*.p4 linguist-detectable=true
*.pddl linguist-detectable=true
*.pegjs linguist-detectable=true
*.php linguist-detectable=true
*.aw linguist-detectable=true
*.ctp linguist-detectable=true
*.fcgi linguist-detectable=true
*.inc linguist-detectable=true
*.php3 linguist-detectable=true
*.php4 linguist-detectable=true
*.php5 linguist-detectable=true
*.phps linguist-detectable=true
*.phpt linguist-detectable=true
*.php linguist-detectable=true
*.php_cs linguist-detectable=true
*.php_cs.dist linguist-detectable=true
*.pls linguist-detectable=true
*.bdy linguist-detectable=true
*.ddl linguist-detectable=true
*.fnc linguist-detectable=true
*.pck linguist-detectable=true
*.pkb linguist-detectable=true
*.pks linguist-detectable=true
*.plb linguist-detectable=true
*.plsql linguist-detectable=true
*.prc linguist-detectable=true
*.spc linguist-detectable=true
*.sql linguist-detectable=true
*.tpb linguist-detectable=true
*.tps linguist-detectable=true
*.trg linguist-detectable=true
*.vw linguist-detectable=true
*.pgsql linguist-detectable=true
*.sql linguist-detectable=true
*.pov linguist-detectable=true
*.inc linguist-detectable=true
*.pan linguist-detectable=true
*.psc linguist-detectable=true
*.parrot linguist-detectable=true
*.pasm linguist-detectable=true
*.pir linguist-detectable=true
*.pas linguist-detectable=true
*.dfm linguist-detectable=true
*.dpr linguist-detectable=true
*.inc linguist-detectable=true
*.lpr linguist-detectable=true
*.pascal linguist-detectable=true
*.pp linguist-detectable=true
*.pwn linguist-detectable=true
*.inc linguist-detectable=true
*.sma linguist-detectable=true
*.pep linguist-detectable=true
*.pl linguist-detectable=true
*.al linguist-detectable=true
*.cgi linguist-detectable=true
*.fcgi linguist-detectable=true
*.perl linguist-detectable=true
*.ph linguist-detectable=true
*.plx linguist-detectable=true
*.pm linguist-detectable=true
*.psgi linguist-detectable=true
*.t linguist-detectable=true
*.latexmkrc linguist-detectable=true
*.pic linguist-detectable=true
*.chem linguist-detectable=true
*.pkl linguist-detectable=true
*.l linguist-detectable=true
*.pig linguist-detectable=true
*.pike linguist-detectable=true
*.pmod linguist-detectable=true
*.puml linguist-detectable=true
*.iuml linguist-detectable=true
*.plantuml linguist-detectable=true
*.pod linguist-detectable=true
*.pod linguist-detectable=true
*.pod6 linguist-detectable=true
*.pogo linguist-detectable=true
*.polar linguist-detectable=true
*.pony linguist-detectable=true
*.por linguist-detectable=true
*.pcss linguist-detectable=true
*.postcss linguist-detectable=true
*.ps linguist-detectable=true
*.eps linguist-detectable=true