Skip to content

Commit ea277e3

Browse files
authored
V8.gitattributes
An archive of the 8th version of the gitattributes file for this project.
1 parent 3e5f5a0 commit ea277e3

File tree

1 file changed

+171
-0
lines changed

1 file changed

+171
-0
lines changed
Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
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+
# Less stylesheet file
36+
*.less linguist-detectable=true
37+
*.less linguist-documentation=false
38+
*.less linguist-language=Less
39+
# JSON (JavaScript Object Notation) source file
40+
*.json linguist-detectable=false
41+
*.json linguist-documentation=false
42+
*.json linguist-language=JSON
43+
# QT Script source file
44+
*.qs linguist-detectable=false
45+
*.qs linguist-documentation=false
46+
# Linguist attempts:
47+
# Qt-Script
48+
# QT-Script
49+
# QT_Script
50+
# QTScript
51+
*.qs linguist-language=QTScript
52+
# YAML (YAML Ain't Markup Language) document
53+
# Do not include, as it would become a dominant language that shouldn't be the language people refer this project to
54+
*.yml linguist-detectable=false
55+
*.yml linguist-documentation=false
56+
*.yml linguist-language=YAML
57+
*.yaml linguist-detectable=false
58+
*.yaml linguist-documentation=false
59+
*.yaml linguist-language=YAML
60+
# Markdown
61+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
62+
*.md linguist-detectable=false
63+
*.md linguist-documentation=false
64+
*.md linguist-language=Markdown
65+
*.mkd linguist-detectable=false
66+
*.mkd linguist-documentation=false
67+
*.mkd linguist-language=Markdown
68+
*.mdown linguist-detectable=false
69+
*.mdown linguist-documentation=false
70+
*.mdown linguist-language=Markdown
71+
*.markdown linguist-detectable=false
72+
*.markdown linguist-documentation=false
73+
*.markdown linguist-language=Markdown
74+
# Makefile (GNU Make)
75+
# Do not include, as it is not needed to be shown
76+
*.mk linguist-detectable=false
77+
*.mk linguist-documentation=false
78+
*.mk linguist-language=Makefile
79+
*.mak linguist-detectable=false
80+
*.mak linguist-documentation=false
81+
*.mak linguist-language=Makefile
82+
*.make linguist-detectable=false
83+
*.make linguist-documentation=false
84+
*.make linguist-language=Makefile
85+
*.makefile linguist-detectable=false
86+
*.makefile linguist-documentation=false
87+
*.makefile linguist-language=Makefile
88+
# SVG (Scalable Vector Graphics) image file
89+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
90+
*.svg linguist-detectable=false
91+
*.svg linguist-documentation=false
92+
*.svg linguist-language=SVG
93+
# Git Configuration files
94+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
95+
*.gitattributes linguist-detectable=false
96+
*.gitattributes linguist-documentation=false
97+
*.gitignore linguist-detectable=false
98+
*.gitignore linguist-documentation=false
99+
*.editorconfig linguist-detectable=false
100+
*.editorconfig linguist-documentation=false
101+
# Plain Text document
102+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
103+
*.txt linguist-detectable=false
104+
*.txt linguist-documentation=false
105+
*.txt linguist-language=Plain-Text
106+
# ReStructuredText
107+
*.rst linguist-detectable=false
108+
*.rst linguist-documentation=false
109+
*.rst linguist-language=ReStructured-Text
110+
# WikiText
111+
*.wiki linguist-detectable=false
112+
*.wiki linguist-documentation=false
113+
*.wiki linguist-language=WikiText
114+
# BibTeX
115+
*.bib linguist-detectable=false
116+
*.bib linguist-documentation=false
117+
*.bib linguist-language=BibTeX
118+
# TeX
119+
*.tex linguist-detectable=false
120+
*.tex linguist-documentation=false
121+
*.tex linguist-language=TeX
122+
# Desktop entry
123+
*.desktop linguist-detectable=false
124+
*.desktop linguist-documentation=false
125+
*.desktop linguist-language=desktop
126+
# INI/CFG
127+
*.ini linguist-detectable=false
128+
*.ini linguist-documentation=false
129+
*.ini linguist-language=INI
130+
*.cfg linguist-detectable=false
131+
*.cfg linguist-documentation=false
132+
*.cfg linguist-language=INI
133+
# CFF
134+
*.cff linguist-detectable=false
135+
*.cff linguist-documentation=false
136+
*.cff linguist-language=Citation-File-Format
137+
# PNG/PNS
138+
*.png linguist-detectable=false
139+
*.png linguist-documentation=false
140+
*.png linguist-language=PNG
141+
*.pns linguist-detectable=false
142+
*.pns linguist-documentation=false
143+
*.pns linguist-language=PNG
144+
# JPG/JPEG/JFIF/JIF
145+
*.jpg linguist-detectable=false
146+
*.jpg linguist-documentation=false
147+
*.jpg linguist-language=JPEG
148+
*.jpeg linguist-detectable=false
149+
*.jpeg linguist-documentation=false
150+
*.jpeg linguist-language=JPEG
151+
*.jfif linguist-detectable=false
152+
*.jfif linguist-documentation=false
153+
*.jfif linguist-language=JPEG
154+
*.jif linguist-detectable=false
155+
*.jif linguist-documentation=false
156+
*.jif linguist-language=JPEG
157+
# JP2 (JPEG 2000)
158+
*.jp2 linguist-detectable=false
159+
*.jp2 linguist-documentation=false
160+
*.jp2 linguist-language=JPEG-2000
161+
# GIF
162+
*.gif linguist-detectable=false
163+
*.gif linguist-documentation=false
164+
*.gif linguist-language=GIF
165+
# End of linguist script
166+
167+
# File info
168+
# File type: gitattributes file (.gitattributes)
169+
# File version: 8 (2022, Thursday, August 25th at 12:54 pm PST)
170+
# Line count (including blank lines and compiler line): 172
171+
# End of script

0 commit comments

Comments
 (0)