Skip to content

Commit 3beb751

Browse files
committed
Recommended extensions and gitignore updated
1 parent 79cf0a8 commit 3beb751

2 files changed

Lines changed: 187 additions & 48 deletions

File tree

.gitignore

Lines changed: 170 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,7 @@
1-
21
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
32

4-
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,windows,linux,macos
5-
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,windows,linux,macos
6-
7-
### VisualStudioCode ###
8-
.vscode/*
9-
!.vscode/settings.json
10-
!.vscode/tasks.json
11-
!.vscode/launch.json
12-
!.vscode/extensions.json
13-
*.code-workspace
14-
15-
# Local History for Visual Studio Code
16-
.history/
17-
18-
### VisualStudioCode Patch ###
19-
# Ignore all local history of files
20-
.history
21-
.ionide
22-
23-
### Windows ###
24-
# Windows thumbnail cache files
25-
Thumbs.db
26-
Thumbs.db:encryptable
27-
ehthumbs.db
28-
ehthumbs_vista.db
29-
30-
# Dump file
31-
*.stackdump
32-
33-
# Folder config file
34-
[Dd]esktop.ini
35-
36-
# Recycle Bin used on file shares
37-
$RECYCLE.BIN/
38-
39-
# Windows Installer files
40-
*.cab
41-
*.msi
42-
*.msix
43-
*.msm
44-
*.msp
45-
46-
# Windows shortcuts
47-
*.lnk
3+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,macos,linux,node
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,macos,linux,node
485

496
### Linux ###
507
*~
@@ -70,6 +27,7 @@ $RECYCLE.BIN/
7027
# Icon must end with two \r
7128
Icon
7229

30+
7331
# Thumbnails
7432
._*
7533

@@ -89,7 +47,173 @@ Network Trash Folder
8947
Temporary Items
9048
.apdisk
9149

92-
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,windows,linux,macos
50+
### Node ###
51+
# Logs
52+
logs
53+
*.log
54+
npm-debug.log*
55+
yarn-debug.log*
56+
yarn-error.log*
57+
lerna-debug.log*
58+
.pnpm-debug.log*
59+
60+
# Diagnostic reports (https://nodejs.org/api/report.html)
61+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
62+
63+
# Runtime data
64+
pids
65+
*.pid
66+
*.seed
67+
*.pid.lock
68+
69+
# Directory for instrumented libs generated by jscoverage/JSCover
70+
lib-cov
71+
72+
# Coverage directory used by tools like istanbul
73+
coverage
74+
*.lcov
75+
76+
# nyc test coverage
77+
.nyc_output
78+
79+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
80+
.grunt
81+
82+
# Bower dependency directory (https://bower.io/)
83+
bower_components
84+
85+
# node-waf configuration
86+
.lock-wscript
87+
88+
# Compiled binary addons (https://nodejs.org/api/addons.html)
89+
build/Release
90+
91+
# Dependency directories
92+
node_modules/
93+
jspm_packages/
94+
95+
# Snowpack dependency directory (https://snowpack.dev/)
96+
web_modules/
97+
98+
# TypeScript cache
99+
*.tsbuildinfo
100+
101+
# Optional npm cache directory
102+
.npm
103+
104+
# Optional eslint cache
105+
.eslintcache
106+
107+
# Microbundle cache
108+
.rpt2_cache/
109+
.rts2_cache_cjs/
110+
.rts2_cache_es/
111+
.rts2_cache_umd/
112+
113+
# Optional REPL history
114+
.node_repl_history
115+
116+
# Output of 'npm pack'
117+
*.tgz
118+
119+
# Yarn Integrity file
120+
.yarn-integrity
121+
122+
# dotenv environment variables file
123+
.env
124+
.env.test
125+
.env.production
126+
127+
# parcel-bundler cache (https://parceljs.org/)
128+
.cache
129+
.parcel-cache
130+
131+
# Next.js build output
132+
.next
133+
out
134+
135+
# Nuxt.js build / generate output
136+
.nuxt
137+
dist
138+
139+
# Gatsby files
140+
.cache/
141+
# Comment in the public line in if your project uses Gatsby and not Next.js
142+
# https://nextjs.org/blog/next-9-1#public-directory-support
143+
# public
144+
145+
# vuepress build output
146+
.vuepress/dist
147+
148+
# Serverless directories
149+
.serverless/
150+
151+
# FuseBox cache
152+
.fusebox/
153+
154+
# DynamoDB Local files
155+
.dynamodb/
156+
157+
# TernJS port file
158+
.tern-port
159+
160+
# Stores VSCode versions used for testing VSCode extensions
161+
.vscode-test
162+
163+
# yarn v2
164+
.yarn/cache
165+
.yarn/unplugged
166+
.yarn/build-state.yml
167+
.yarn/install-state.gz
168+
.pnp.*
169+
170+
### Node Patch ###
171+
# Serverless Webpack directories
172+
.webpack/
173+
174+
### VisualStudioCode ###
175+
.vscode/*
176+
!.vscode/settings.json
177+
!.vscode/tasks.json
178+
!.vscode/launch.json
179+
!.vscode/extensions.json
180+
*.code-workspace
181+
182+
# Local History for Visual Studio Code
183+
.history/
184+
185+
### VisualStudioCode Patch ###
186+
# Ignore all local history of files
187+
.history
188+
.ionide
189+
190+
### Windows ###
191+
# Windows thumbnail cache files
192+
Thumbs.db
193+
Thumbs.db:encryptable
194+
ehthumbs.db
195+
ehthumbs_vista.db
196+
197+
# Dump file
198+
*.stackdump
199+
200+
# Folder config file
201+
[Dd]esktop.ini
202+
203+
# Recycle Bin used on file shares
204+
$RECYCLE.BIN/
205+
206+
# Windows Installer files
207+
*.cab
208+
*.msi
209+
*.msix
210+
*.msm
211+
*.msp
212+
213+
# Windows shortcuts
214+
*.lnk
215+
216+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,macos,linux,node
93217

94218
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
95219

.vscode/extensions.json

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,36 @@
11
{
22
"recommendations": [
33
"andreabbondanza.ignoregit",
4-
"codezombiech.gitignore",
5-
"eamodio.gitlens",
4+
"bierner.github-markdown-preview",
5+
"coenraads.bracket-pair-colorizer-2",
6+
"cschleiden.vscode-github-actions",
7+
"donjayamanne.git-extension-pack",
8+
"editorconfig.editorconfig",
9+
"emilast.logfilehighlighter",
10+
"esbenp.prettier-vscode",
11+
"github.codespaces",
612
"github.vscode-pull-request-github",
713
"ibm.output-colorizer",
814
"icrawl.discord-vscode",
915
"jasonnutter.vscode-codeowners",
1016
"knisterpeter.vscode-github",
17+
"mhutchie.git-graph",
18+
"ms-azuretools.vscode-docker",
19+
"ms-vscode-remote.vscode-remote-extensionpack",
1120
"oderwat.indent-rainbow",
1221
"pflannery.vscode-versionlens",
22+
"pinage404.bash-extension-pack",
1323
"piotrpalarz.vscode-gitignore-generator",
24+
"redhat.vscode-yaml",
25+
"rogalmic.bash-debug",
1426
"shan.code-settings-sync",
1527
"shd101wyy.markdown-preview-enhanced",
1628
"usernamehw.errorlens",
29+
"visualstudioexptteam.vscodeintellicode",
30+
"wakatime.vscode-wakatime",
1731
"wwm.better-align",
1832
"xshrim.txt-syntax",
1933
"yzhang.markdown-all-in-one",
34+
"zainchen.json",
2035
]
2136
}

0 commit comments

Comments
 (0)