From 422a6cb887de89d29f3135461472e8a0be8e4bc8 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Sat, 7 Jun 2025 09:35:00 +0200 Subject: [PATCH] build: remove git validation from default vscode settings Removes the validations for git messages that were introduced at some point. It seems like having these in the project overrides the user settings and is annoying for some team members. If somebody wants to run these validations, they can add them to their own vscode settings. --- .vscode/settings.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6dd174b51c8e..00d1ce468dbf 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,7 +11,6 @@ "**/bazel-out": true, "**/dist": true }, - "git.ignoreLimitWarning": true, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true @@ -24,8 +23,5 @@ "editor.rulers": [100], "bazel.buildifierExecutable": "node_modules/.bin/buildifier", "bazel.buildifierFixOnFormat": true, - "bazel.executable": "node_modules/.bin/bazel", - "git.inputValidation": true, - "git.inputValidationSubjectLength": 100, - "git.inputValidationLength": 100 + "bazel.executable": "node_modules/.bin/bazel" }