Skip to content

Commit f1a9f2e

Browse files
authored
V7.gitattributes
An archive of the 7th version of the gitattributes file for this project.
1 parent 953cc48 commit f1a9f2e

File tree

1 file changed

+166
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)