forked from yargs/yargs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
29 lines (24 loc) · 985 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
# git attributes config file
# v2023.11.21 [rivy]
# spell-checker:ignore () deps EOLs globstar MSVC (people) Roy Ivy III * rivy
# NOTE: Git GLOBSTAR syntax [see `git help gitignore`]
# * ref: [.gitignore] http://git-scm.com/docs/gitignore @@ http://archive.is/Rk6rO
# default; use LF EOLs for text files
* text=auto eol=lf
# CRLF required; force required CRLF EOLs for WinOS BAT/CMD and MSVC SLN files
*.[bB][aA][tT] text eol=crlf
*.[cC][mM][dD] text eol=crlf
*.[sS][lL][nN] text eol=crlf
# binaries; force binary interpretation (limits worthless wall-of-text diffs and avoids CRLF/LF conversion issues)
# - note: use `git diff --text ...` or `git log --text ...` to override and show differences as text
# * build/dist artifacts
build/**/* binary
dist/**/* binary
# * dep locks (eg, `package-lock.json`, `yarn.lock`)
.deps-lock/**/* binary
# * vendor
vendor/**/* binary
# * `yarn` config files
.yarn/**/* binary
## local-start
## local-end