feat(make): add fix-order target

This commit is contained in:
Julien Bisconti
2026-03-31 19:38:20 +02:00
parent 903a700510
commit 3c2e534977

View File

@@ -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