8000 V5.gitattributes · seanpm2001/Learn-Arduino@de3e7c5 · GitHub
[go: up one dir, main page]

Skip to content

Commit de3e7c5

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

File tree

1 file changed

+175
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)
0