From 00298d51b4d708bc9e43f9bb7c16578dc2a4193e Mon Sep 17 00:00:00 2001 From: Eric Thelin Date: Fri, 6 Mar 2026 12:18:59 +0100 Subject: [PATCH 1/2] fix: add no-op version control linter This fixes `just verify` and `just lint-all` after update to devbase-check v0.4.1. See: https://github.com/diggsweden/devbase-check/releases/tag/v0.4.1 Signed-off-by: Eric Thelin --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 6a8d712..d95d29a 100644 --- a/justfile +++ b/justfile @@ -89,6 +89,10 @@ verify: _ensure-devtools check-tools lint-all: _ensure-devtools @{{devtools_dir}}/scripts/verify.sh +# Validate version control +[group('lint')] +lint-version-control: + # Validate commit messages [group('lint')] lint-commits: From bacc010ed1b6b1efba149a17f0f371e15aa377f4 Mon Sep 17 00:00:00 2001 From: Eric Thelin Date: Fri, 6 Mar 2026 12:21:34 +0100 Subject: [PATCH 2/2] feat: enable version control linter This will stop the build when there are unversioned changes in the working tree. See: https://github.com/diggsweden/devbase-check Signed-off-by: Eric Thelin --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index d95d29a..165e6ec 100644 --- a/justfile +++ b/justfile @@ -92,6 +92,7 @@ lint-all: _ensure-devtools # Validate version control [group('lint')] lint-version-control: + @{{lint}}/version-control.sh # Validate commit messages [group('lint')]