From bf0b67b17a85c74d1011f024166482c667775eaa Mon Sep 17 00:00:00 2001 From: Damien Carcel Date: Tue, 12 Sep 2023 09:56:50 +0200 Subject: [PATCH] Improve Dev Containers configuration - Fix the path of the "initialize command" - Add some default VS Code configuration --- .devcontainer/devcontainer.json | 2 +- .vscode/settings.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index def853f..db36f80 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,7 +16,7 @@ } }, "name": "carcel.dev", - "initializeCommand": "./setup.sh", + "initializeCommand": "./.devcontainer/setup.sh", "runServices": ["dev", "prod"], "remoteUser": "node", "service": "devcontainer", diff --git a/.vscode/settings.json b/.vscode/settings.json index 50f1957..92cb244 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,9 @@ { + "editor.rulers": [120], + "files.insertFinalNewline": true, + "files.trimFinalNewlines": true, + "files.trimTrailingWhitespace": true, "yaml.schemas": { - "https://taskfile.dev/schema.json": [ - "taskfiles/dependencies.yaml", - "taskfiles/setup.yaml", - "taskfiles/tests.yaml" - ] + "https://taskfile.dev/schema.json": ["taskfiles/dependencies.yaml", "taskfiles/tests.yaml"] } }