Skip to content

Commit 4302688

Browse files
author
Andrei Jiroh Eugenio Halili
committed
chore(global): add gitignore file
Simply put, copied from the starter-pack repo, as usual. Signed-off-by: Andrei Jiroh Eugenio Halili <[email protected]>
1 parent 6092980 commit 4302688

File tree

1 file changed

+186
-0
lines changed

1 file changed

+186
-0
lines changed

Diff for: .gitignore

+186
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,node,yarn
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,linux,node,yarn
5+
6+
### Linux ###
7+
*~
8+
9+
# temporary files which can be created if a process still has a handle open of a deleted file
10+
.fuse_hidden*
11+
12+
# KDE directory preferences
13+
.directory
14+
15+
# Linux trash folder which might appear on any partition or disk
16+
.Trash-*
17+
18+
# .nfs files are created when an open file is removed but is still being accessed
19+
.nfs*
20+
21+
### Node ###
22+
# Logs
23+
logs
24+
*.log
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
lerna-debug.log*
29+
30+
# Diagnostic reports (https://nodejs.org/api/report.html)
31+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
32+
33+
# Runtime data
34+
pids
35+
*.pid
36+
*.seed
37+
*.pid.lock
38+
39+
# Directory for instrumented libs generated by jscoverage/JSCover
40+
lib-cov
41+
42+
# Coverage directory used by tools like istanbul
43+
coverage
44+
*.lcov
45+
46+
# nyc test coverage
47+
.nyc_output
48+
49+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
50+
.grunt
51+
52+
# Bower dependency directory (https://bower.io/)
53+
bower_components
54+
55+
# node-waf configuration
56+
.lock-wscript
57+
58+
# Compiled binary addons (https://nodejs.org/api/addons.html)
59+
build/Release
60+
61+
# Dependency directories
62+
node_modules/
63+
jspm_packages/
64+
65+
# TypeScript v1 declaration files
66+
typings/
67+
68+
# TypeScript cache
69+
*.tsbuildinfo
70+
71+
# Optional npm cache directory
72+
.npm
73+
74+
# Optional eslint cache
75+
.eslintcache
76+
77+
# Optional stylelint cache
78+
.stylelintcache
79+
80+
# Microbundle cache
81+
.rpt2_cache/
82+
.rts2_cache_cjs/
83+
.rts2_cache_es/
84+
.rts2_cache_umd/
85+
86+
# Optional REPL history
87+
.node_repl_history
88+
89+
# Output of 'npm pack'
90+
*.tgz
91+
92+
# Yarn Integrity file
93+
.yarn-integrity
94+
95+
# dotenv environment variables file
96+
.env
97+
.env.test
98+
.env*.local
99+
100+
# parcel-bundler cache (https://parceljs.org/)
101+
.cache
102+
.parcel-cache
103+
104+
# Next.js build output
105+
.next
106+
107+
# Nuxt.js build / generate output
108+
.nuxt
109+
dist
110+
111+
# Storybook build outputs
112+
.out
113+
.storybook-out
114+
storybook-static
115+
116+
# rollup.js default build output
117+
dist/
118+
119+
# Gatsby files
120+
.cache/
121+
# Comment in the public line in if your project uses Gatsby and not Next.js
122+
# https://nextjs.org/blog/next-9-1#public-directory-support
123+
# public
124+
125+
# vuepress build output
126+
.vuepress/dist
127+
128+
# Serverless directories
129+
.serverless/
130+
131+
# FuseBox cache
132+
.fusebox/
133+
134+
# DynamoDB Local files
135+
.dynamodb/
136+
137+
# TernJS port file
138+
.tern-port
139+
140+
# Stores VSCode versions used for testing VSCode extensions
141+
.vscode-test
142+
143+
# Temporary folders
144+
tmp/
145+
temp/
146+
147+
### VisualStudioCode ###
148+
.vscode/*
149+
!.vscode/settings.json
150+
!.vscode/tasks.json
151+
!.vscode/launch.json
152+
!.vscode/extensions.json
153+
*.code-workspace
154+
155+
### VisualStudioCode Patch ###
156+
# Ignore all local history of files
157+
.history
158+
.ionide
159+
160+
### yarn ###
161+
# https://yarnpkg.com/advanced/qa#which-files-should-be-gitignored
162+
163+
.yarn/*
164+
!.yarn/releases
165+
!.yarn/plugins
166+
!.yarn/sdks
167+
!.yarn/versions
168+
169+
# if you are NOT using Zero-installs, then:
170+
# comment the following lines
171+
!.yarn/cache
172+
173+
# and uncomment the following lines
174+
# .pnp.*
175+
176+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,node,yarn
177+
178+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
179+
180+
# GitHub export of the upstream repo
181+
deploy-code-server-main
182+
main.zip
183+
184+
# custom configurations
185+
chart/config/*.yml
186+
chart/config/*-example.yml

0 commit comments

Comments
 (0)