From 3c2e534977edc82c22e5f1bc8f2a50127b8e6a3e Mon Sep 17 00:00:00 2001 From: Julien Bisconti Date: Tue, 31 Mar 2026 19:38:20 +0200 Subject: [PATCH] feat(make): add fix-order target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a74cc7e..813636d 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ HEALTH_INPUTS := README.md config/exclude.yaml .PHONY: help \ build rebuild clean \ fmt test test-race \ - lint lint-fix check check-pr validate website \ + lint lint-fix fix-order check check-pr validate website \ guard-github-token health health-cache \ report report-json report-file report-json-file health-report \ workflow-dev workflow-pr workflow-maint workflow-ci @@ -78,6 +78,9 @@ lint: build ## Validate README formatting/content rules lint-fix: build ## Auto-fix lint issues when possible ./$(BINARY) lint --fix +fix-order: build ## Sort README entries alphabetically + ./$(BINARY) fix-order + check: build ## Check links (GitHub checks enabled when GITHUB_TOKEN is set) ./$(BINARY) check