FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/.gitignore at master · isker/node · GitHub
isker
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
.gitignore
Copy path
More file actions
More file actions
Latest commit
History
History
History
147 lines (134 loc) · 2.61 KB
Breadcrumbs
node
/
.gitignore
Copy path
File metadata and controls
147 lines (134 loc) · 2.61 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#
Please take extra care not to add rules that will make tracked files ignored.
#
To test that, run `git ls-files -i --exclude-standard`.
#
To check why a specific file is ignored, run `git check-ignore -v <filepath>`.
#
=== Rule for dotfiles ===
#
Ignore all dotfiles.
.
*
#
Exclude specific dotfiles that we want to track.
!
deps
/
**
/
.
*
!
test
/
fixtures
/
**
/
.
*
!
.clang-format
!
.editorconfig
!
.eslintignore
!
.eslintrc.js
!
.flake8
!
.gitattributes
!
.github
!
.gitignore
!
.gitkeep
!
.mailmap
!
.nycrc
!
.eslintrc.yaml
!
.cpplint
#
=== Rules for root dir ===
/
core
/
vgcore.
*
/
v8
*
.log
/
perf.data
/
perf.data.old
/
tags
/
doc
/
api.xml
/
node
/
node_g
/
gon-config.json
/
*
.exe
/
*
.swp
/
out
/
*
.msi
/
*
.wixpdb
/
*
.qlog
#
For GitHub Codespaces
/
pythonenv
*
#
=== Rules for artifacts of `./configure` ===
/
icu_config.gypi
/
config.gypi
/
config.status
/
config_fips.gypi
#
=== Rules for MSVS artifacts ===
Debug
/
Release
/
*
.sln
*
.suo
*
.vcxproj
*
UpgradeLog
*
.XML
_UpgradeReport_Files
/
*
.sdf
*
.opensdf
*
.VC.
*
*
.wixobj
/
tools
/
msvs
/
genfiles
/
/
npm.wxs
/
tools
/
msvs
/
msi
/
Release
/
/
tools
/
msvs
/
msi
/
obj
/
/
tools
/
msvs
/
msi
/
x64
/
#
Exclude MSVS files used for .msi file generation
!
tools
/
msvs
/
msi
/
custom_actions.vcxproj
!
tools
/
msvs
/
msi
/
nodemsi.sln
#
=== Rules for GYP artifacts ===
*
-nodegyp
*
/
gyp-
*
-tool
/
test
/
addons
/
??
_
*
/
/
*
.mk
#
=== Rules for other build artifacts ===
/
email.md
/
deps
/
v8-
*
/
deps
/
icu
/
deps
/
icu
*
.zip
/
deps
/
icu
*
.tgz
/
deps
/
icu-tmp
.
/
node_modules
/
android-toolchain
/
#
generated by gyp on Windows
/
deps
/
openssl
/
openssl.props
/
deps
/
openssl
/
openssl.targets
/
deps
/
openssl
/
openssl.xml
#
generated by gyp on android
/
*
.target.mk
/
*
.host.mk
/
deps
/
openssl
/
openssl.target.mk
/
deps
/
zlib
/
zlib.target.mk
#
generated by MSVC with /P enabled
tools
/
*
/
*
.i
tools
/
*
/
*
.i.tmp
#
=== Rules for release artifacts ===
/
*
.tar.
*
/
*
.pkg
/
SHASUMS
*
.txt
*
#
=== Rules for `node_modules` ===
!
**
/
node_modules
/
**
/
node_modules
/
tools
/
doc
/
node_modules
/
tools
/
clang-format
/
node_modules
#
=== Rules for test artifacts ===
/
*
.tap
/
*
.xml
/
node_trace.
*
.log
#
coverage related
/
gcovr
/
build
/
coverage
#
=== Rules for XCode artifacts ===
*
.xcodeproj
*
.xcworkspace
*
.pbxproj
#
=== Rules for files in `/deps` ===
#
Exclude all files in the vendored `npm`.
!
/
deps
/
npm
/
node_modules
#
These are not needed and causes issues for distro packagers.
/
deps
/
npm
/
node_modules
/
.bin
/
#
Respect V8's .gitignore
!
deps
/
v8
/
**
#
Ignore the libuv book and GitHub templates
/
deps
/
uv
/
.github
/
/
deps
/
uv
/
docs
/
code
/
/
deps
/
uv
/
docs
/
src
/
guide
/
#
Ignore dependencies fetched by deps/v8/tools/node/fetch_deps.py
/
deps
/
.cipd
#
=== Rules for Windows vcbuild.bat ===
/
temp-vcbuild
#
=== Global Rules ===
#
Keep last to avoid being excluded
*
.pyc
__pycache__
.DS_Store
*
~
Back
|
FazBrowse Home
|
New Git URL