-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
35 lines (24 loc) · 908 Bytes
/
.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
# See https://git-scm.com/docs/gitattributes for more about git attribute files.
# Mark the database schema as having been generated.
db/schema.rb linguist-generated
# Mark any vendored files as having been vendored.
vendor/* linguist-vendored
# Mark log files as binary to avoid diffing them.
log/* binary
# Ensure consistent line endings for text files.
* text=auto
# Custom diff driver for Markdown files.
*.md diff=markdown
# Custom diff driver for Ruby files.
*.rb diff=ruby
# Mark Gemfile.lock as binary to avoid diffing it.
Gemfile.lock binary
# Mark minified JavaScript and CSS files as generated.
public/assets/*.min.js linguist-generated
public/assets/*.min.css linguist-generated
# Mark compiled assets as generated.
public/assets/* linguist-generated
# Mark node_modules as vendored.
node_modules/* linguist-vendored
# Mark Yarn lockfile as binary to avoid diffing it.
yarn.lock binary