Skip to content

Commit

Permalink
ENH: automatically remove pixi settings in VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Aug 13, 2024
1 parent 162b8de commit 440af91
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/compwa_policy/check_dev_files/pixi.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,10 @@ def ___outsource_cmd(task: Table, other_task_name: str) -> bool:
def _remove_pixi_configuration() -> None:
with Executor() as do, ModifiablePyproject.load() as pyproject:
do(__remove_pixi_configuration, pyproject)
do(
vscode.remove_settings,
{"files.associations": ["**/pixi.lock", "pixi.lock"]},
)


def __remove_pixi_configuration(pyproject: ModifiablePyproject) -> None:
Expand Down

0 comments on commit 440af91

Please sign in to comment.