From d3cd060dedee03f1995a94fc7e28f508bafcbc0b Mon Sep 17 00:00:00 2001 From: Keval Morabia <28916987+kevalmorabia97@users.noreply.github.com> Date: Tue, 30 Sep 2025 01:42:19 +0530 Subject: [PATCH] Set git commit signing on in .vscode/settings.json Signed-off-by: Keval Morabia <28916987+kevalmorabia97@users.noreply.github.com> --- .vscode/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 55f3a52d5..0a3a2353e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -42,5 +42,7 @@ "evenBetterToml.schema.enabled": false, // disable toml/json schema since we have custom fields "python.analysis.extraPaths": [ "./tests/" // add tests to python path just like pytest does in pyproject.toml - ] + ], + "git.alwaysSignOff": true, + "git.enableCommitSigning": true, }