-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitignore
50 lines (41 loc) · 972 Bytes
/
.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
# v2022-08-27 [rivy]
# + local-start/end mods for `less`
# NOTE: Git GLOBSTAR syntax [see `git help gitignore`]
# * ref: [.gitignore] http://git-scm.com/docs/gitignore @@ http://archive.is/Rk6rO
# * ref: [Generate gitignore's](https://gitignore.io) ; eg, <https://gitignore.io/api/node>
# ignore intermediate/undistributed build artifacts
build
[._@#$]build
target
# ignore coverage data
coverage
[._@#$]coverage
.nyc_output
# ignore JS import/package-related files
node_modules
package-lock.json
yarn.lock
# ignore local-only VSCode artifacts
# * logs/settings
.vscode/c_cpp_properties.json
.vscode/makefile.extension.output
# * precompiled headers for IntelliSense
.vscode/ipch/
#!local-start
# `less` ~ most older Makefiles still generate artifacts *within* the source code folder
# ignore generated artifacts
# * executables
less
less.exe
lessecho
lessecho.exe
lesskey
lesskey.exe
# * depfiles
*.d
# * headers
defines.h
# * object files
*.o
*.obj
#!local-end