1+ # Created by https://www.toptal.com/developers/gitignore/api/go,node
2+ # Edit at https://www.toptal.com/developers/gitignore?templates=go,node
3+
4+ # ## Go ###
5+ # If you prefer the allow list template instead of the deny list, see community template:
6+ # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
7+ #
8+ # Binaries for programs and plugins
9+ bin /
10+ dist /
11+ * .exe
12+ * .exe~
13+ * .dll
14+ * .so
15+ * .dylib
16+
17+ # Test binary, built with `go test -c`
18+ * .test
19+
20+ # Output of the go coverage tool, specifically when used with LiteIDE
21+ * .out
22+
23+ # Dependency directories
24+ vendor /
25+
26+ # Data directories
27+ data /
28+ logs /
29+
30+ # IDE-specific files
31+ .idea /
32+ .vscode /
33+ * .swp
34+ * .swo
35+ * ~
36+
37+ # Go workspace file
38+ go.work
39+
40+ # OS-specific files
41+ .DS_Store
42+ Thumbs.db
43+
44+ # ## Node ###
45+ # Logs
46+ logs
47+ * .log
48+ npm-debug.log *
49+ yarn-debug.log *
50+ yarn-error.log *
51+ lerna-debug.log *
52+ .pnpm-debug.log *
53+
54+ # Diagnostic reports (https://nodejs.org/api/report.html)
55+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
56+
57+ # Runtime data
58+ pids
59+ * .pid
60+ * .seed
61+ * .pid.lock
62+
63+ # Directory for instrumented libs generated by jscoverage/JSCover
64+ lib-cov
65+
66+ # Coverage directory used by tools like istanbul
67+ coverage
68+ * .lcov
69+
70+ # nyc test coverage
71+ .nyc_output
72+
73+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
74+ .grunt
75+
76+ # Bower dependency directory (https://bower.io/)
77+ bower_components
78+
79+ # node-waf configuration
80+ .lock-wscript
81+
82+ # Compiled binary addons (https://nodejs.org/api/addons.html)
83+ build /Release
84+
85+ # Dependency directories
86+ node_modules /
87+ jspm_packages /
88+
89+ # Snowpack dependency directory (https://snowpack.dev/)
90+ web_modules /
91+
92+ # TypeScript cache
93+ * .tsbuildinfo
94+
95+ # Optional npm cache directory
96+ .npm
97+
98+ # Optional eslint cache
99+ .eslintcache
100+
101+ # Optional stylelint cache
102+ .stylelintcache
103+
104+ # Microbundle cache
105+ .rpt2_cache /
106+ .rts2_cache_cjs /
107+ .rts2_cache_es /
108+ .rts2_cache_umd /
109+
110+ # Optional REPL history
111+ .node_repl_history
112+
113+ # Output of 'npm pack'
114+ * .tgz
115+
116+ # Yarn Integrity file
117+ .yarn-integrity
118+
119+ # dotenv environment variable files
120+ .env
121+ .env.development.local
122+ .env.test.local
123+ .env.production.local
124+ .env.local
125+
126+ # parcel-bundler cache (https://parceljs.org/)
127+ .cache
128+ .parcel-cache
129+
130+ # Next.js build output
131+ .next
132+ out
133+
134+ # Nuxt.js build / generate output
135+ .nuxt
136+ dist
137+
138+ # Gatsby files
139+ .cache /
140+ # Comment in the public line in if your project uses Gatsby and not Next.js
141+ # https://nextjs.org/blog/next-9-1#public-directory-support
142+ # public
143+
144+ # vuepress build output
145+ .vuepress /dist
146+
147+ # vuepress v2.x temp and cache directory
148+ .tmp
149+
150+ # Docusaurus cache and generated files
151+ .docusaurus
152+
153+ # Serverless directories
154+ .serverless /
155+
156+ # FuseBox cache
157+ .fusebox /
158+
159+ # DynamoDB Local files
160+ .dynamodb /
161+
162+ # TernJS port file
163+ .tern-port
164+
165+ # Stores VSCode versions used for testing VSCode extensions
166+ .vscode-test
167+
168+ # yarn v2
169+ .yarn /cache
170+ .yarn /unplugged
171+ .yarn /build-state.yml
172+ .yarn /install-state.gz
173+ .pnp. *
174+
175+ # ## Node Patch ###
176+ # Serverless Webpack directories
177+ .webpack /
178+
179+ # Optional stylelint cache
180+
181+ # SvelteKit build / generate output
182+ .svelte-kit
183+
184+ # End of https://www.toptal.com/developers/gitignore/api/go,node
0 commit comments