Skip to content

Commit 6367cea

Browse files
authored
.gitattributes
The .gitattributes file for this project.
1 parent 8c8f343 commit 6367cea

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

.gitattributes

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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+
# I am hiding EVERYTHING but C source code, as the C programming language is one of Dennis Ritchie's most notable achievements.
9+
# CSS
10+
*.css linguist-detectable=true
11+
*.css linguist-documentation=false
12+
# PHP
13+
*.php linguist-detectable=true
14+
*.php linguist-documentation=false
15+
# Less
16+
*.less linguist-detectable=true
17+
*.less linguist-documentation=false
18+
# JavaScript
19+
*.js linguist-detectable=true
20+
*.js linguist-documentation=false
21+
# Java
22+
*.java linguist-detectable=true
23+
*.java linguist-documentation=false
24+
# Ruby
25+
*.rb linguist-detectable=true
26+
*.rb linguist-documentation=false
27+
# Python
28+
*.py linguist-detectable=true
29+
*.py linguist-documentation=false
30+
*.wat linguist-detectable=true
31+
*.wat linguist-documentation=false
32+
*.wasm linguist-detectable=true
33+
*.wasm linguist-documentation=false
34+
# HTML
35+
*.htm linguist-detectable=false
36+
*.htm linguist-documentation=false
37+
*.html linguist-detectable=false
38+
*.html linguist-documentation=false
39+
*.mhtm linguist-detectable=false
40+
*.mhtm linguist-documentation=false
41+
*.mhtml linguist-detectable=false
42+
*.mhtml linguist-documentation=false
43+
*.xhtm linguist-detectable=false
44+
*.xhtm linguist-documentation=false
45+
*.xhtml linguist-detectable=false
46+
*.xhtml linguist-documentation=false
47+
# YAML
48+
*.yml linguist-detectable=false
49+
*.yml linguist-documentation=false
50+
*.yaml linguist-detectable=false
51+
*.yaml linguist-documentation=false
52+
# Markdown
53+
*.md linguist-detectable=false
54+
*.md linguist-documentation=false
55+
*.mkd linguist-detectable=false
56+
*.mkd linguist-documentation=false
57+
*.markdown linguist-detectable=false
58+
*.markdown linguist-documentation=false
59+
# Makefile (GNU Make)
60+
# Do not include, as it is not needed to be shown
61+
*.mk linguist-detectable=false
62+
*.mk linguist-documentation=false
63+
# End of linguist script
64+
# File info
65+
# File type: gitattributes file (.gitattributes)
66+
# File version: 1 (Friday, 2021 September 10th at 9:31 pm)
67+
# Line count (including blank lines and compiler line): 69
68+
# End of script

0 commit comments

Comments
 (0)