Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: add GitLens VS Code extension by default #439

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading