Skip to content

Commit

Permalink
ENH: add GitLens VS Code extension by default (#439)
Browse files Browse the repository at this point in the history
* MAINT: sort VS Code extension additions
  • Loading branch information
redeboer authored Oct 16, 2024
1 parent d81cf46 commit 19abc0a
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions src/compwa_policy/check_dev_files/vscode.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,34 @@ def _update_extensions() -> None:
with Executor() as do:
do(
vscode.add_extension_recommendation,
"stkb.rewrap", # cspell:ignore stkb
"eamodio.gitlens", # cspell:ignore eamodio
)
do(
vscode.remove_extension_recommendation,
"travisillig.vscode-json-stable-stringify", # cspell:ignore travisillig
unwanted=True,
vscode.add_extension_recommendation,
"mhutchie.git-graph", # cspell:ignore mhutchie
)
do(
vscode.remove_extension_recommendation,
"tyriar.sort-lines", # cspell:ignore tyriar
unwanted=True,
vscode.add_extension_recommendation,
"soulcode.vscode-unwanted-extensions", # cspell:ignore Soulcode
)
do(
vscode.add_extension_recommendation,
"stkb.rewrap", # cspell:ignore stkb
)
do(
vscode.remove_extension_recommendation,
"garaioag.garaio-vscode-unwanted-recommendations", # cspell:ignore garaio garaioag
unwanted=True,
)
do(
vscode.add_extension_recommendation,
"Soulcode.vscode-unwanted-extensions", # cspell:ignore Soulcode
vscode.remove_extension_recommendation,
"travisillig.vscode-json-stable-stringify", # cspell:ignore travisillig
unwanted=True,
)
do(
vscode.add_extension_recommendation,
"mhutchie.git-graph", # cspell:ignore mhutchie
vscode.remove_extension_recommendation,
"tyriar.sort-lines", # cspell:ignore tyriar
unwanted=True,
)


Expand Down

0 comments on commit 19abc0a

Please sign in to comment.