Skip to content

Commit 2d6741a

Browse files
authored
chore(vscode): add recommended extensions (chimurai#715)
1 parent 7f99ed1 commit 2d6741a

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

.vscode/extensions.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"recommendations": [
3+
"bierner.markdown-preview-github-styles",
4+
"dbaeumer.vscode-eslint",
5+
"eamodio.gitlens",
6+
"EditorConfig.EditorConfig",
7+
"esbenp.prettier-vscode",
8+
"streetsidesoftware.code-spell-checker",
9+
"yzhang.markdown-all-in-one"
10+
]
11+
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"deno.enable": false,
33
"editor.codeActionsOnSave": {
44
"source.fixAll.eslint": true
5-
}
5+
},
6+
"markdown.extension.toc.levels": "2..3"
67
}

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Node.js proxying made simple. Configure proxy middleware with ease for [connect]
99

1010
Powered by the popular Nodejitsu [`http-proxy`](https://github.com/nodejitsu/node-http-proxy). [![GitHub stars](https://img.shields.io/github/stars/nodejitsu/node-http-proxy.svg?style=social&label=Star)](https://github.com/nodejitsu/node-http-proxy)
1111

12-
## ⚠️ Note
12+
## ⚠️ Note <!-- omit in toc -->
1313

14-
This page is showing documentation for version v1.x.x ([release notes](https://github.com/chimurai/http-proxy-middleware/releases))
14+
This page is showing documentation for version v2.x.x ([release notes](https://github.com/chimurai/http-proxy-middleware/releases))
1515

1616
If you're looking for v0.x documentation. Go to:
1717
https://github.com/chimurai/http-proxy-middleware/tree/v0.21.0#readme
1818

19-
## TL;DR
19+
## TL;DR <!-- omit in toc -->
2020

2121
Proxy `/api` requests to `http://www.example.org`
2222

@@ -52,9 +52,7 @@ _All_ `http-proxy` [options](https://github.com/nodejitsu/node-http-proxy#option
5252

5353
:bulb: **Tip:** Set the option `changeOrigin` to `true` for [name-based virtual hosted sites](http://en.wikipedia.org/wiki/Virtual_hosting#Name-based).
5454

55-
## Table of Contents
56-
57-
<!-- MarkdownTOC autolink=true bracket=round depth=2 -->
55+
## Table of Contents <!-- omit in toc -->
5856

5957
- [Install](#install)
6058
- [Core concept](#core-concept)
@@ -65,7 +63,7 @@ _All_ `http-proxy` [options](https://github.com/nodejitsu/node-http-proxy#option
6563
- [http-proxy events](#http-proxy-events)
6664
- [http-proxy options](#http-proxy-options)
6765
- [Shorthand](#shorthand)
68-
- [app.use\(path, proxy\)](#appusepath-proxy)
66+
- [app.use(path, proxy)](#appusepath-proxy)
6967
- [WebSocket](#websocket)
7068
- [External WebSocket upgrade](#external-websocket-upgrade)
7169
- [Intercept and manipulate requests](#intercept-and-manipulate-requests)
@@ -77,8 +75,6 @@ _All_ `http-proxy` [options](https://github.com/nodejitsu/node-http-proxy#option
7775
- [Changelog](#changelog)
7876
- [License](#license)
7977

80-
<!-- /MarkdownTOC -->
81-
8278
## Install
8379

8480
```bash

0 commit comments

Comments
 (0)