File tree 4 files changed +13
-3
lines changed
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ main() {
14
14
15
15
cd lib/vscode
16
16
# Run this periodically in vanilla VS code to make sure we don't add any more warnings.
17
- yarn eslint --max-warnings=3
17
+ yarn -s eslint --max-warnings=3
18
18
cd " $OLDPWD "
19
19
}
20
20
Original file line number Diff line number Diff line change
1
+ diff --git a/.eslintignore b/.eslintignore
2
+ index b2c4a5b6efa856968bbb62c56113004ddb3929e6..035aec8f6a8b0ea8fc6d3d836d160da54aac2fdb 100644
3
+ --- a/.eslintignore
4
+ +++ b/.eslintignore
5
+ @@ -14,3 +14,5 @@
6
+ **/extensions/**/build/**
7
+ **/extensions/markdown-language-features/media/**
8
+ **/extensions/typescript-basics/test/colorize-fixtures/**
9
+ + # This is a code-server code symlink.
10
+ + src/vs/base/node/proxy_agent.ts
1
11
diff --git a/.eslintrc.json b/.eslintrc.json
2
12
index 055bc22f8e48e7dee559b83ac56c12a54c6ad544..14c026c04a7df5ac94bea2856e3a7a513c213775 100644
3
13
--- a/.eslintrc.json
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ import {
17
17
} from "./cli"
18
18
import { coderCloudBind } from "./coder_cloud"
19
19
import { commit , version } from "./constants"
20
+ import * as proxyAgent from "./proxy_agent"
20
21
import { register } from "./routes"
21
22
import { humanPath , isFile , open } from "./util"
22
23
import { isChild , wrapper } from "./wrapper"
23
- import * as proxyAgent from "./proxy_agent"
24
24
25
25
export const runVsCodeCli = ( args : DefaultedArgs ) : void => {
26
26
logger . debug ( "forking vs code cli..." )
Original file line number Diff line number Diff line change 1
1
import { logger } from "@coder/logger"
2
- import * as proxyagent from "proxy-agent"
3
2
import * as http from "http"
3
+ import * as proxyagent from "proxy-agent"
4
4
5
5
/**
6
6
* This file does not have anything to do with the code-server proxy.
You can’t perform that action at this time.
0 commit comments