From ee3c2a7fe0788cad8b8e089d6896dd184aba2ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Fri, 18 Jun 2021 11:22:38 +0200 Subject: [PATCH] [meta] Clean up vscode folder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs --- .devcontainer/Dockerfile | 26 ------------------------- .devcontainer/devcontainer.json | 33 -------------------------------- .vscode/launch.json | 34 --------------------------------- 3 files changed, 93 deletions(-) delete mode 100644 .devcontainer/Dockerfile delete mode 100644 .devcontainer/devcontainer.json delete mode 100644 .vscode/launch.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index b3d0e9ad..00000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,26 +0,0 @@ -# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.154.0/containers/ruby/.devcontainer/base.Dockerfile - -# [Choice] Ruby version: 2, 2.7, 2.6, 2.5 -ARG VARIANT="2" -FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT} - -ENV DEBIAN_FRONTEND=noninteractive - -COPY Gemfile /tmp/Gemfile - -RUN \ - apt-get update \ - && \ - apt-get -y install --no-install-recommends \ - jq \ - libjq-dev \ - libonig-dev \ - gnupg2 \ - && \ - sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin \ - && \ - curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | /bin/bash - \ - && \ - bundle config set system 'true' \ - && bundle install --gemfile /tmp/Gemfile \ - && rm /tmp/Gemfile diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 156c901d..00000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,33 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.154.0/containers/ruby -{ - "name": "Ruby", - "build": { - "context": "..", - "dockerfile": "Dockerfile", - "args": { - // Update 'VARIANT' to pick a Ruby version: 2, 2.7, 2.6, 2.5 - "VARIANT": "2.7", - } - }, - - // Set *default* container specific settings.json values on container create. - "settings": { - "terminal.integrated.shell.linux": "/bin/bash" - }, - - // Add the IDs of extensions you want installed when the container is created. - "extensions": [ - "ms-kubernetes-tools.vscode-kubernetes-tools", - "rebornix.Ruby" - ], - - // Use 'forwardPorts' to make a list of ports inside the container available locally. - // "forwardPorts": [], - - // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "export RUBYJQ_USE_SYSTEM_LIBRARIES=1 && bundle install", - - // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "vscode" -} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index d0f54369..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "UnitTest - active spec file only", - "type": "Ruby", - "request": "launch", - "cwd": "${workspaceRoot}", - "program": "/usr/local/bin/bundle", - "args": [ - "exec", - "m", - "-r", - "${relativeFile}" - ] - }, - { - "name": "UnitTest - all spec files", - "type": "Ruby", - "request": "launch", - "cwd": "${workspaceRoot}", - "program": "/usr/local/bin/bundle", - "args": [ - "exec", - "m", - "-r", - "${workspaceFolder}/test/charts" - ] - } - ] -}