File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ main() {
1414
1515 cd lib/vscode
1616 # 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
1818 cd " $OLDPWD "
1919}
2020
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
111diff --git a/.eslintrc.json b/.eslintrc.json
212index 055bc22f8e48e7dee559b83ac56c12a54c6ad544..14c026c04a7df5ac94bea2856e3a7a513c213775 100644
313--- a/.eslintrc.json
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ import {
1717} from "./cli"
1818import { coderCloudBind } from "./coder_cloud"
1919import { commit , version } from "./constants"
20+ import * as proxyAgent from "./proxy_agent"
2021import { register } from "./routes"
2122import { humanPath , isFile , open } from "./util"
2223import { isChild , wrapper } from "./wrapper"
23- import * as proxyAgent from "./proxy_agent"
2424
2525export const runVsCodeCli = ( args : DefaultedArgs ) : void => {
2626 logger . debug ( "forking vs code cli..." )
Original file line number Diff line number Diff line change 11import { logger } from "@coder/logger"
2- import * as proxyagent from "proxy-agent"
32import * as http from "http"
3+ import * as proxyagent from "proxy-agent"
44
55/**
66 * 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