-
Notifications
You must be signed in to change notification settings - Fork 119
/
.gitattributes
26 lines (21 loc) · 972 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
# Prevent Windows systems from cloning this repository with "\r\n" line endings.
core.autocrlf=false
# Prevent people from making merge commits:
# https://www.endoflineblog.com/gitflow-considered-harmful
pull.rebase=true
# Convert all files to use "\n" line endings.
* text=auto eol=lf
# Specify the file type for some binary files to prevent Git from changing the line endings upon
# cloning the repository.
*.mp3 binary
*.png binary
*.wav binary
# Specify the file type for some files that GitHub will not automatically characterize properly.
# https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
.vscode/*.json linguist-language=JSON-with-Comments
tsconfig*.json linguist-language=JSON-with-Comments
# Suppress displaying changes on certain files to prevent cluttering commit diffs on GitHub.
package-lock.json linguist-generated=true
yarn.lock linguist-generated=true
pnpm-lock.yaml linguist-generated=true
bun.lockb linguist-generated=true