From 419df7af0ed757affdbecd5b5b52c62b596726a2 Mon Sep 17 00:00:00 2001 From: Steven Date: Tue, 17 Sep 2024 14:25:15 +0100 Subject: [PATCH] BAU: dont override user workspace colour preferences Remove the colour customisations specified at the repository configuration level. Developers can still specify their own customisations for the workspaces. The current version of vscode has very little contrast with the chosen colour scheme which makes it hard to use. This also removes an override for formatting on saving which can also now be chosen by the developer based on their setup -- formatting issues should be caught in pre-commit checks both locally and during the CI process. --- .vscode/settings.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index bdc8b893..dc5fe501 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,10 +1,4 @@ { - "workbench.colorCustomizations": { - "activityBar.background": "#10a84a", - "titleBar.activeBackground": "#10a84a", - "titleBar.activeForeground": "#ffffff" - }, - "editor.formatOnSave": false, "python.testing.pytestArgs": [ "tests" ],