Skip to content

Commit

Permalink
ENH: install git graph by default
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Aug 12, 2024
1 parent 84e5d7f commit 64ff95c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
13 changes: 7 additions & 6 deletions src/compwa_policy/check_dev_files/vscode.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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
)


Expand Down

0 comments on commit 64ff95c

Please sign in to comment.