diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 0c92cc3d..0d65ce32 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,7 +11,8 @@ "ms-python.black-formatter", "charliermarsh.ruff", "timonwong.shellcheck", - "SonarSource.sonarlint-vscode" + "SonarSource.sonarlint-vscode", + "redhat.vscode-yaml" ], "settings": { "sonarlint.disableTelemetry": true, diff --git a/.gitpod.yml b/.gitpod.yml index a77a8dfc..69bb6f3e 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,8 +1,11 @@ tasks: -- init: sudo apt update -y && sudo apt upgrade -y && sudo apt install -y apktool && sudo apt install -y dexdump && sudo apt install -y ripgrep && virtualenv venv && source venv/bin/activate && python -m pip install --upgrade pip && pip install -r requirements.txt && python __init__.py +- init: sudo apt update && sudo apt upgrade -y && sudo apt install -y apktool dexdump ripgrep && virtualenv venv && source venv/bin/activate && python -m pip install --upgrade pip wheel setuptools && pip install -r requirements.txt && python __init__.py vscode: extensions: - ms-python.python + - ms-python.vscode-pylance + - ms-python.black-formatter - eamodio.gitlens - charliermarsh.ruff - SonarSource.sonarlint-vscode + - redhat.vscode-yaml