Skip to content

Commit 4fa1791

Browse files
committed
Updating .gitignore for node projects
Signed-off-by: Mark Rossett <marosset@microsoft.com>
1 parent e682a34 commit 4fa1791

1 file changed

Lines changed: 140 additions & 1 deletion

File tree

.gitignore

Lines changed: 140 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,143 @@
11
# Generated by Cargo
22
# will have compiled files and executables
33
**/debug/
4-
**/target/
4+
**/target/
5+
6+
# Node dependencies from https://github.com/github/gitignore/blob/main/Node.gitignore
7+
8+
# Logs
9+
logs
10+
*.log
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
lerna-debug.log*
15+
.pnpm-debug.log*
16+
17+
# Diagnostic reports (https://nodejs.org/api/report.html)
18+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
*.lcov
32+
33+
# nyc test coverage
34+
.nyc_output
35+
36+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
37+
.grunt
38+
39+
# Bower dependency directory (https://bower.io/)
40+
bower_components
41+
42+
# node-waf configuration
43+
.lock-wscript
44+
45+
# Compiled binary addons (https://nodejs.org/api/addons.html)
46+
build/Release
47+
48+
# Dependency directories
49+
node_modules/
50+
jspm_packages/
51+
52+
# Snowpack dependency directory (https://snowpack.dev/)
53+
web_modules/
54+
55+
# TypeScript cache
56+
*.tsbuildinfo
57+
58+
# Optional npm cache directory
59+
.npm
60+
61+
# Optional eslint cache
62+
.eslintcache
63+
64+
# Optional stylelint cache
65+
.stylelintcache
66+
67+
# Microbundle cache
68+
.rpt2_cache/
69+
.rts2_cache_cjs/
70+
.rts2_cache_es/
71+
.rts2_cache_umd/
72+
73+
# Optional REPL history
74+
.node_repl_history
75+
76+
# Output of 'npm pack'
77+
*.tgz
78+
79+
# Yarn Integrity file
80+
.yarn-integrity
81+
82+
# dotenv environment variable files
83+
.env
84+
.env.development.local
85+
.env.test.local
86+
.env.production.local
87+
.env.local
88+
89+
# parcel-bundler cache (https://parceljs.org/)
90+
.cache
91+
.parcel-cache
92+
93+
# Next.js build output
94+
.next
95+
out
96+
97+
# Nuxt.js build / generate output
98+
.nuxt
99+
dist
100+
101+
# Gatsby files
102+
.cache/
103+
# Comment in the public line in if your project uses Gatsby and not Next.js
104+
# https://nextjs.org/blog/next-9-1#public-directory-support
105+
# public
106+
107+
# vuepress build output
108+
.vuepress/dist
109+
110+
# vuepress v2.x temp and cache directory
111+
.temp
112+
.cache
113+
114+
# vitepress build output
115+
**/.vitepress/dist
116+
117+
# vitepress cache directory
118+
**/.vitepress/cache
119+
120+
# Docusaurus cache and generated files
121+
.docusaurus
122+
123+
# Serverless directories
124+
.serverless/
125+
126+
# FuseBox cache
127+
.fusebox/
128+
129+
# DynamoDB Local files
130+
.dynamodb/
131+
132+
# TernJS port file
133+
.tern-port
134+
135+
# Stores VSCode versions used for testing VSCode extensions
136+
.vscode-test
137+
138+
# yarn v2
139+
.yarn/cache
140+
.yarn/unplugged
141+
.yarn/build-state.yml
142+
.yarn/install-state.gz
143+
.pnp.*

0 commit comments

Comments
 (0)