From 0668537d29b1bd2947609c49fb4015fa4ebbf8f7 Mon Sep 17 00:00:00 2001 From: Andrey Butirsky Date: Sat, 28 Sep 2024 18:01:16 +0000 Subject: [PATCH] meta: VS Code: add "Git: Always Sign Off" setting VS Code setting to auto signoff commits. This also corresponds to our GitHub Web workflow. Signed-off-by: Andrey Butirsky Link: https://github.com/openwrt/openwrt/pull/16540 Signed-off-by: Hauke Mehrtens --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..b93fa58b76 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "git.alwaysSignOff": true +}