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 )