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