From 8675f727945ef727b17be22d1c002bcc2548b1de Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Mon, 12 Aug 2024 09:05:42 +0200 Subject: [PATCH] Revert "ENH: install git graph by default" This reverts commit 64ff95c1ea3cea59cada6b1b75a0b20cc2930ab1. --- .gitpod.yml | 1 - .vscode/extensions.json | 1 - src/compwa_policy/check_dev_files/vscode.py | 13 ++++++------- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 5776029e..26c9d956 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -22,7 +22,6 @@ vscode: - executablebookproject.myst-highlight - github.vscode-github-actions - github.vscode-pull-request-github - - mhutchie.git-graph - ms-python.mypy-type-checker - ms-python.python - ms-python.vscode-pylance diff --git a/.vscode/extensions.json b/.vscode/extensions.json index bf49b542..55cb02b9 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -8,7 +8,6 @@ "executablebookproject.myst-highlight", "github.vscode-github-actions", "github.vscode-pull-request-github", - "mhutchie.git-graph", "ms-python.mypy-type-checker", "ms-python.python", "ms-python.vscode-pylance", diff --git a/src/compwa_policy/check_dev_files/vscode.py b/src/compwa_policy/check_dev_files/vscode.py index cd5f4313..279c1d8c 100644 --- a/src/compwa_policy/check_dev_files/vscode.py +++ b/src/compwa_policy/check_dev_files/vscode.py @@ -21,7 +21,8 @@ def _update_extensions() -> None: ) do( vscode.remove_extension_recommendation, - "travisillig.vscode-json-stable-stringify", # cspell:ignore travisillig + "travisillig.vscode-json-stable-stringify", + # cspell:ignore travisillig unwanted=True, ) do( @@ -31,16 +32,14 @@ def _update_extensions() -> None: ) do( vscode.remove_extension_recommendation, - "garaioag.garaio-vscode-unwanted-recommendations", # cspell:ignore garaio garaioag + "garaioag.garaio-vscode-unwanted-recommendations", + # cspell:ignore garaio garaioag unwanted=True, ) do( vscode.add_extension_recommendation, - "Soulcode.vscode-unwanted-extensions", # cspell:ignore Soulcode - ) - do( - vscode.add_extension_recommendation, - "mhutchie.git-graph", # cspell:ignore mhutchie + "Soulcode.vscode-unwanted-extensions", + # cspell:ignore Soulcode )