Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9ab20fa

Browse files
V5.gitattributes
V5.gitattributes
1 parent db3ad7c commit 9ab20fa

File tree

1 file changed

+183
-0
lines changed

1 file changed

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

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /