From 19da857809f60aab437cf531f76ab0659e479d0d Mon Sep 17 00:00:00 2001 From: kenorb Date: Fri, 19 Apr 2024 14:30:21 +0000 Subject: [PATCH 1/7] Adds initial .vscode/settings.json --- .vscode/settings.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..6e4042bdf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "indicatorcandle.h": "c" + } +} \ No newline at end of file From b6769829098538e05623696fb4d4fd564150d5d2 Mon Sep 17 00:00:00 2001 From: kenorb Date: Fri, 19 Apr 2024 14:30:29 +0000 Subject: [PATCH 2/7] Adds DavidAnson.vscode-markdownlint extension to devcontainer --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7389048a9..9eeed2795 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,7 +7,8 @@ "extensions": [ "L-I-V.mql-tools", "ms-vscode.cpptools", - "vscodevim.vim" + "vscodevim.vim", + "DavidAnson.vscode-markdownlint" ], } }, From f55eb8745f2d4bdb6fc84ed8bce7515808d7ad65 Mon Sep 17 00:00:00 2001 From: kenorb Date: Fri, 19 Apr 2024 14:32:25 +0000 Subject: [PATCH 3/7] Adds wine to devcontainer --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9eeed2795..7498b4a1a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -19,7 +19,8 @@ "ghcr.io/guiyomh/features/vim:0": {}, "ghcr.io/jungaretti/features/make:1": {}, "ghcr.io/prulloac/devcontainer-features/pre-commit:1": {}, - "ghcr.io/hspaans/devcontainer-features/ansible-lint:1": {} + "ghcr.io/hspaans/devcontainer-features/ansible-lint:1": {}, + "ghcr.io/maks1ms/devcontainers-features/wine:0": {} }, // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/devcontainers/base:jammy", From 111e4eecd9a26f7c7f70c44d4de8345181d0d7b2 Mon Sep 17 00:00:00 2001 From: "Rafal W." Date: Fri, 19 Apr 2024 14:40:30 +0000 Subject: [PATCH 4/7] devcontainer: Adds node --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7498b4a1a..ed46af684 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,7 +20,8 @@ "ghcr.io/jungaretti/features/make:1": {}, "ghcr.io/prulloac/devcontainer-features/pre-commit:1": {}, "ghcr.io/hspaans/devcontainer-features/ansible-lint:1": {}, - "ghcr.io/maks1ms/devcontainers-features/wine:0": {} + "ghcr.io/maks1ms/devcontainers-features/wine:0": {}, + "ghcr.io/devcontainers-contrib/features/node-asdf:0": {} }, // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/devcontainers/base:jammy", From 0873c086ce2b8a7518fba877181699fa7f62bf94 Mon Sep 17 00:00:00 2001 From: "Rafal W." Date: Fri, 19 Apr 2024 14:40:54 +0000 Subject: [PATCH 5/7] Disables wine package Refs: https://github.com/Maks1mS/devcontainers-features/issues/5 --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ed46af684..0796ac114 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -20,7 +20,7 @@ "ghcr.io/jungaretti/features/make:1": {}, "ghcr.io/prulloac/devcontainer-features/pre-commit:1": {}, "ghcr.io/hspaans/devcontainer-features/ansible-lint:1": {}, - "ghcr.io/maks1ms/devcontainers-features/wine:0": {}, + // "ghcr.io/maks1ms/devcontainers-features/wine:0": {}, "ghcr.io/devcontainers-contrib/features/node-asdf:0": {} }, // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile From ca96c21dc4dfe1d9412118f124af838f57db2ac1 Mon Sep 17 00:00:00 2001 From: kenorb Date: Fri, 19 Apr 2024 14:56:34 +0000 Subject: [PATCH 6/7] Fixes new lines [end-of-file-fixer] --- .devcontainer/devcontainer.json | 2 +- .vscode/settings.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 0796ac114..ab7146929 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -26,4 +26,4 @@ // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/devcontainers/base:jammy", "name": "EA31337" -} \ No newline at end of file +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 6e4042bdf..9084cffd9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,4 +2,4 @@ "files.associations": { "indicatorcandle.h": "c" } -} \ No newline at end of file +} From 4842049ac1d3a0930f302ad007529cd57ee219fd Mon Sep 17 00:00:00 2001 From: kenorb Date: Fri, 19 Apr 2024 15:36:53 +0000 Subject: [PATCH 7/7] Adds EA31337.vscode-mql-tools extension --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ab7146929..44cb575cc 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,10 +5,10 @@ "customizations": { "vscode": { "extensions": [ - "L-I-V.mql-tools", "ms-vscode.cpptools", "vscodevim.vim", - "DavidAnson.vscode-markdownlint" + "DavidAnson.vscode-markdownlint", + "EA31337.vscode-mql-tools" ], } },