Skip to content

Commit 3761fe6

Browse files
authored
V5.gitattributes
V5.gitattributes
1 parent 2218ee3 commit 3761fe6

File tree

1 file changed

+200
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)