-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
75 lines (67 loc) · 1.86 KB
/
.gitattributes
File metadata and controls
75 lines (67 loc) · 1.86 KB
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
# RUBY-ON-RAILS-FRIENDSAPP - Academic Repository
# Standardized Git Attributes for Scholarly Archiving
# Learned from RUBY repository configuration
# Set default behavior to automatically normalize line endings
* text=auto eol=lf
# Explicitly mark source files as text
*.rb text eol=lf
*.erb text eol=lf
*.html text eol=lf
*.css text eol=lf
*.scss text eol=lf
*.js text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.md text eol=lf
*.rake text eol=lf
Gemfile text eol=lf
Rakefile text eol=lf
.gitattributes text eol=lf
.gitignore text eol=lf
# Mark binary files
*.jpg binary
*.jpeg binary
*.png binary
*.gif binary
*.ico binary
*.pdf binary
*.eot binary
*.ttf binary
*.woff binary
*.woff2 binary
# Improve diff handling and scholarly classification
*.md text diff=markdown
*.rb text diff=ruby
*.md linguist-documentation
# LINGUIST OPTIMIZATION - PRECISE RUBY & BATCHFILE
# Force Ruby and Batchfile to be the sole representatives
*.rb linguist-language=Ruby
*.rb linguist-detectable=true
*.erb linguist-language=Ruby
*.erb linguist-detectable=true
*.cmd linguist-language=Batchfile
*.cmd linguist-detectable=true
*.bat linguist-language=Batchfile
*.bat linguist-detectable=true
# Precisely hide only the non-core web assets
"**/*.html" linguist-vendored
"**/*.html" -linguist-detectable
"**/*.css" linguist-vendored
"**/*.css" -linguist-detectable
"**/*.js" linguist-vendored
"**/*.js" -linguist-detectable
"**/*.scss" linguist-vendored
"**/*.scss" -linguist-detectable
# Hide known oversized or non-logic directories
"Mega/**" linguist-vendored
"Mega/**" -linguist-detectable
"docs/**" linguist-documentation
"docs/**" -linguist-detectable
"screenshots/**" linguist-vendored
"screenshots/**" -linguist-detectable
# Metadata handled as documentation
*.md linguist-documentation
*.cff linguist-documentation
codemeta.json linguist-documentation
LICENSE linguist-documentation