Skip to content

Commit 75ebe4d

Browse files
authored
V5.gitattributes
An archive of the 5th version of the gitattributes file for this project.
1 parent cbc71b7 commit 75ebe4d

File tree

1 file changed

+184
-0
lines changed

1 file changed

+184
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
# Start of script
2+
# .gitattributes
3+
# This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project.
4+
# Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file
5+
# .gitattributes
6+
# and nothing else, no characters before, no characters after
7+
# Start of linguist script
8+
# HTML (HyperText Markup Language) document
9+
*.htm linguist-detectable=true
10+
*.htm linguist-documentation=false
11+
*.htm linguist-language=HTML
12+
*.html linguist-detectable=true
13+
*.html linguist-documentation=false
14+
*.html linguist-language=HTML
15+
*.mhtm linguist-detectable=true
16+
*.mhtm linguist-documentation=false
17+
*.mhtm linguist-language=HTML
18+
*.mhtml linguist-detectable=true
19+
*.mhtml linguist-documentation=false
20+
*.mhtml linguist-language=HTML
21+
*.xhtm linguist-detectable=true
22+
*.xhtm linguist-documentation=false
23+
*.xhtm linguist-language=HTML
24+
*.xhtml linguist-detectable=true
25+
*.xhtml linguist-documentation=false
26+
*.xhtml linguist-language=HTML
27+
# HTA (HTML Application) file
28+
*.hta linguist-detectable=true
29+
*.hta linguist-documentation=false
30+
*.hta linguist-language=HTML
31+
# CSS (Cascade Styling Sheets) stylesheet file
32+
*.css linguist-detectable=true
33+
*.css linguist-documentation=false
34+
*.css linguist-language=CSS
35+
# C Source file
36+
*.c linguist-detectable=true
37+
*.c linguist-documentation=false
38+
*.c linguist-language=C
39+
# C Header Source file
40+
*.h linguist-detectable=true
41+
*.h linguist-documentation=false
42+
*.h linguist-language=C
43+
# Assembly Source file
44+
*.asm linguist-detectable=true
45+
*.asm linguist-documentation=false
46+
*.asm linguist-language=Assembly
47+
# Less stylesheet file
48+
*.less linguist-detectable=true
49+
*.less linguist-documentation=false
50+
*.less linguist-language=Less
51+
# JSON (JavaScript Object Notation) source file
52+
*.json linguist-detectable=false
53+
*.json linguist-documentation=false
54+
*.json linguist-language=JSON
55+
# WebVTT subtitle file
56+
*.vtt linguist-detectable=true
57+
*.vtt linguist-documentation=false
58+
*.vtt linguist-language=WebVTT
59+
# SubRip subtitle file
60+
*.srt linguist-detectable=true
61+
*.srt linguist-documentation=false
62+
*.srt linguist-language=SubRip-Text
63+
# YAML (YAML Ain't Markup Language) document
64+
# Do not include, as it would become a dominant language that shouldn't be the language people refer this project to
65+
*.yml linguist-detectable=false
66+
*.yml linguist-documentation=false
67+
*.yml linguist-language=YAML
68+
*.yaml linguist-detectable=false
69+
*.yaml linguist-documentation=false
70+
*.yaml linguist-language=YAML
71+
# Markdown
72+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
73+
*.md linguist-detectable=false
74+
*.md linguist-documentation=false
75+
*.md linguist-language=Markdown
76+
*.mkd linguist-detectable=false
77+
*.mkd linguist-documentation=false
78+
*.mkd linguist-language=Markdown
79+
*.mdown linguist-detectable=false
80+
*.mdown linguist-documentation=false
81+
*.mdown linguist-language=Markdown
82+
*.markdown linguist-detectable=false
83+
*.markdown linguist-documentation=false
84+
*.markdown linguist-language=Markdown
85+
# Makefile (GNU Make)
86+
# Do not include, as it is not needed to be shown
87+
*.mk linguist-detectable=false
88+
*.mk linguist-documentation=false
89+
*.mk linguist-language=Makefile
90+
*.mak linguist-detectable=false
91+
*.mak linguist-documentation=false
92+
*.mak linguist-language=Makefile
93+
*.make linguist-detectable=false
94+
*.make linguist-documentation=false
95+
*.make linguist-language=Makefile
96+
*.makefile linguist-detectable=false
97+
*.makefile linguist-documentation=false
98+
*.makefile linguist-language=Makefile
99+
# SVG (Scalable Vector Graphics) image file
100+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
101+
*.svg linguist-detectable=false
102+
*.svg linguist-documentation=false
103+
*.svg linguist-language=SVG
104+
# Git Configuration files
105+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
106+
*.gitattributes linguist-detectable=false
107+
*.gitattributes linguist-documentation=false
108+
*.gitignore linguist-detectable=false
109+
*.gitignore linguist-documentation=false
110+
*.editorconfig linguist-detectable=false
111+
*.editorconfig linguist-documentation=false
112+
# Plain Text document
113+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
114+
*.txt linguist-detectable=false
115+
*.txt linguist-documentation=false
116+
*.txt linguist-language=Plain-Text
117+
# ReStructuredText
118+
*.rst linguist-detectable=false
119+
*.rst linguist-documentation=false
120+
*.rst linguist-language=ReStructured-Text
121+
# WikiText
122+
*.wiki linguist-detectable=false
123+
*.wiki linguist-documentation=false
124+
*.wiki linguist-language=WikiText
125+
# BibTeX
126+
*.bib linguist-detectable=false
127+
*.bib linguist-documentation=false
128+
*.bib linguist-language=BibTeX
129+
# TeX
130+
*.tex linguist-detectable=false
131+
*.tex linguist-documentation=false
132+
*.tex linguist-language=TeX
133+
# Desktop entry
134+
*.desktop linguist-detectable=false
135+
*.desktop linguist-documentation=false
136+
*.desktop linguist-language=desktop
137+
# INI/CFG
138+
*.ini linguist-detectable=false
139+
*.ini linguist-documentation=false
140+
*.ini linguist-language=INI
141+
*.cfg linguist-detectable=false
142+
*.cfg linguist-documentation=false
143+
*.cfg linguist-language=INI
144+
# CFF
145+
*.cff linguist-detectable=false
146+
*.cff linguist-documentation=false
147+
*.cff linguist-language=Citation-File-Format
148+
# PNG/PNS
149+
*.png linguist-detectable=false
150+
*.png linguist-documentation=false
151+
*.png linguist-language=PNG
152+
*.pns linguist-detectable=false
153+
*.pns linguist-documentation=false
154+
*.pns linguist-language=PNG
155+
# JPG/JPEG/JFIF/JIF
156+
*.jpg linguist-detectable=false
157+
*.jpg linguist-documentation=false
158+
*.jpg linguist-language=JPEG
159+
*.jpeg linguist-detectable=false
160+
*.jpeg linguist-documentation=false
161+
*.jpeg linguist-language=JPEG
162+
*.jfif linguist-detectable=false
163+
*.jfif linguist-documentation=false
164+
*.jfif linguist-language=JPEG
165+
*.jif linguist-detectable=false
166+
*.jif linguist-documentation=false
167+
*.jif linguist-language=JPEG
168+
# JP2 (JPEG 2000)
169+
*.jp2 linguist-detectable=false
170+
*.jp2 linguist-documentation=false
171+
*.jp2 linguist-language=JPEG-2000
172+
# GIF
173+
*.gif linguist-detectable=false
174+
*.gif linguist-documentation=false
175+
*.gif linguist-language=GIF
176+
177+
# End of linguist script
178+
179+
# File info
180+
# File type: gitattributes file (*.gitattributes)
181+
# File version: 5 (2022, Friday, December 2nd at 8:30 pm PST)
182+
# Line count (including blank lines and compiler line): 185
183+
184+
# End of script

0 commit comments

Comments
 (0)