-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitattributes
80 lines (80 loc) · 2.96 KB
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Start of script
# .gitattributes
# 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.
# 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
# .gitattributes
# and nothing else, no characters before, no characters after
# Start of linguist script
# Makefile
# Makefile is no longer the majority language. I feel that the language `desktop` is a much better fit, and I didn't know about it when originally creating this. I have been thinking on it for a couple weeks, and have finally changed the tables today. - 2022 Monday March 7th
*.mk linguist-detectable=false
*.mk linguist-documentation=false
*.mak linguist-detectable=false
*.mak linguist-documentation=false
*.make linguist-detectable=false
*.make linguist-documentation=false
*.makefile linguist-detectable=false
*.makefile linguist-documentation=false
# KDE Desktop (see above)
*.desktop linguist-detectable=true
*.desktop linguist-documentation=false
# HTML5
*.htm linguist-detectable=false
*.htm linguist-documentation=false
*.html linguist-detectable=false
*.html linguist-documentation=false
*.mhtm linguist-detectable=false
*.mhtm linguist-documentation=false
*.mhtml linguist-detectable=false
*.mhtml linguist-documentation=false
*.xhtm linguist-detectable=false
*.xhtm linguist-documentation=false
*.xhtml linguist-detectable=false
*.xhtml linguist-documentation=false
# YAML
*.yml linguist-detectable=false
*.yml linguist-documentation=false
*.yaml linguist-detectable=false
*.yaml linguist-documentation=false
# ReStructuredText
*.rst linguist-detectable=false
*.rst linguist-documentation=false
# WikiText
*.wiki linguist-detectable=false
*.wiki linguist-documentation=false
# Windows INI
*.ini linguist-detectable=false
*.ini linguist-documentation=false
# JSON (JavaScript Object Notation)
*.json linguist-detectable=false
*.json linguist-documentation=false
# CFF
*.cff linguist-detectable=false
*.cff linguist-documentation=false
# LaTeX
*.tex linguist-detectable=false
*.tex linguist-documentation=false
*.bib linguist-detectable=false
*.bib linguist-documentation=false
# Plain Text
*.txt linguist-detectable=false
*.txt linguist-documentation=false
# SVG
*.svg linguist-detectable=false
*.svg linguist-documentation=false
# Markdown
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
*.md linguist-detectable=false
*.md linguist-documentation=false
*.mkd linguist-detectable=false
*.mkd linguist-documentation=false
*.mdown linguist-detectable=false
*.mdown linguist-documentation=false
*.markdown linguist-detectable=false
*.markdown linguist-documentation=false
# End of linguist script
# File info
# File type: gitattributes file (*.gitattributes)
# File version: 2 (Monday, 2022 March 7th at 8:04 pm)
# Line count (including blank lines and compiler line): 81
# End of script