forked from yargs/yargs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
57 lines (50 loc) · 1.65 KB
/
.gitignore
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
# git ignore config file
# v2023-11-21 [rivy]
# spell-checker:ignore () yarnrc (jargon) globstar (names) dlang (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
# * ref: [Generate a 'gitignore'](https://gitignore.io) ; eg, <https://gitignore.io/api/node>
# build/dist artifacts
build
[._@#$]build
dist
target
# note: `git add --force dist && git commit -m 'change: add updated dist artifacts'` will still add any desired distribution artifacts
# note: `git status --ignored -- build dist target` will still show changes (for release testing)
# coverage data
coverage
[._@#$]coverage
.nyc_output
# D (dlang)
# * dub
.dub
# note: 'dub.selections.json' is a generated file, useful to applications (for reproducible builds) but not generally for libraries; use `git add --froce ...` if needed
dub.selections.json
# JS/TS
# * ignore JS import/package-related files
node_modules
package-lock.json
yarn.lock
# * allow packaging of lock files into '.deps-lock'
!.deps-lock/package-lock.json
!.deps-lock/yarn.lock
# * ignore `yarn`-related files (allows use of "modern" v2+ `yarn`)
# - ref: <https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored> @@ <https://archive.is/Sc1Ab>
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# * use `.yarnrc.yml` for `yarn` config
.yarnrc
# VSCode
# * ignore local-only VSCode artifacts
# - logs/settings
.vscode/c_cpp_properties.json
.vscode/makefile.extension.output
# - precompiled headers for IntelliSense ## spell-checker:ignore ipch
.vscode/ipch/
## local-start
## local-end