diff --git a/.vscode/settings.json b/.vscode/settings.json index c192127b1fc5f6..f861c5e6bd196f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,5 +14,31 @@ }, "omnisharp.autoStart": false, "jest.autoRun": "off", - "jest.jestCommandLine": "yarn jest" + "jest.jestCommandLine": "yarn jest", + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#ffffff", + "activityBar.activeBorder": "#df9f9f", + "activityBar.background": "#ffffff", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#df9f9f", + "activityBarBadge.foreground": "#15202b", + "editorGroup.border": "#ffffff", + "panel.border": "#ffffff", + "sideBar.border": "#ffffff", + "statusBar.background": "#ffffff", + "statusBar.border": "#ffffff", + "statusBar.debuggingBackground": "#ffffff", + "statusBar.debuggingBorder": "#ffffff", + "statusBar.debuggingForeground": "#15202b", + "statusBar.foreground": "#15202b", + "statusBarItem.hoverBackground": "#e6e6e6", + "tab.activeBorder": "#ffffff", + "titleBar.activeBackground": "#eeeeee", + "titleBar.activeForeground": "#15202b", + "titleBar.border": "#eeeeee", + "titleBar.inactiveBackground": "#eeeeee99", + "titleBar.inactiveForeground": "#15202b99" + }, + "peacock.color": "#e6e6e6" } diff --git a/tools/check-git-version.mjs b/tools/check-git-version.mjs index f2ba0b6e104fd5..65b006acbefd85 100644 --- a/tools/check-git-version.mjs +++ b/tools/check-git-version.mjs @@ -12,9 +12,13 @@ const git = simpleGit(); const [gitVersion] = regex.exec(stdout); if (semver.lt(gitVersion, GIT_MINIMUM_VERSION)) { if (process.env.CI) { - shell.echo(`::error ::Minimum Git version ${GIT_MINIMUM_VERSION} is required`); + shell.echo( + `::error ::Minimum Git version ${GIT_MINIMUM_VERSION} is required` + ); } else { - throw new Error(`Minimum Git version ${GIT_MINIMUM_VERSION} is required`); + throw new Error( + `Minimum Git version ${GIT_MINIMUM_VERSION} is required` + ); } } shell.echo('Found git version: ', gitVersion);