From ea6784f47b691d441ce753aa66df998e10e15e1e Mon Sep 17 00:00:00 2001 From: Splines Date: Mon, 8 Jul 2024 01:18:58 +0200 Subject: [PATCH 1/2] Improve some VSCode settings --- .vscode/settings.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9dcca743d..ad319bb8a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,7 +13,6 @@ "source.fixAll.eslint": "explicit" }, "eslint.format.enable": true, // use ESLint as formatter - "eslint.experimental.useFlatConfig": true, // this disables VSCode built-in formatter (instead we want to use ESLint) "javascript.validate.enable": false, "eslint.options": { @@ -54,6 +53,7 @@ "definition": true }, "rubyLsp.enableExperimentalFeatures": true, + "rubyLsp.customRubyCommand": "set -o allexport && . ./docker-dummy.env && set +o allexport", ////////////////////////////////////// // Ruby Test Explorer ////////////////////////////////////// @@ -71,7 +71,8 @@ "node_modules/": true, "pdfcomprezzor/": true, "coverage/": true, - "solr/": true + "solr/": true, + ".docker/": true }, "files.associations": { "*.js.erb": "javascript", @@ -106,6 +107,5 @@ "commontator", "helpdesk", "turbolinks" - ], - "rubyLsp.customRubyCommand": "set -o allexport && . ./docker-dummy.env && set +o allexport" + ] } \ No newline at end of file From febae5a8494b098ee75d71b51f7cd7c431d0444a Mon Sep 17 00:00:00 2001 From: Splines Date: Mon, 8 Jul 2024 01:23:56 +0200 Subject: [PATCH 2/2] Remove custom Ruby LSP command --- .vscode/settings.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ad319bb8a..751c25906 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -53,7 +53,6 @@ "definition": true }, "rubyLsp.enableExperimentalFeatures": true, - "rubyLsp.customRubyCommand": "set -o allexport && . ./docker-dummy.env && set +o allexport", ////////////////////////////////////// // Ruby Test Explorer //////////////////////////////////////