diff --git a/.gitpod.yml b/.gitpod.yml index 26c9d956..5776029e 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -22,6 +22,7 @@ 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 55cb02b9..bf49b542 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -8,6 +8,7 @@ "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 279c1d8c..cd5f4313 100644 --- a/src/compwa_policy/check_dev_files/vscode.py +++ b/src/compwa_policy/check_dev_files/vscode.py @@ -21,8 +21,7 @@ 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( @@ -32,14 +31,16 @@ 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 + "Soulcode.vscode-unwanted-extensions", # cspell:ignore Soulcode + ) + do( + vscode.add_extension_recommendation, + "mhutchie.git-graph", # cspell:ignore mhutchie )