From c3eb339cb2e1678c2d5f7a69a58df11b58a9cbd8 Mon Sep 17 00:00:00 2001 From: Flo Date: Tue, 9 Jun 2026 23:54:42 +0200 Subject: [PATCH] chore: trim editorializing from AGENTS.md shell standards Co-Authored-By: Claude Fable 5 --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index a6e0a22..64d424f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,6 +1,6 @@ ## Shell Script Development Standards (v2.0) -If you're going to write shell scripts, at least try to make them look like a professional wrote them. The following standards are non-negotiable for `git-harden`. +The following standards are non-negotiable for `git-harden`. ### 1. The Header: No More `sh` From the 80s Use `bash` via `env` for portability. We need modern features like arrays and local scoping. @@ -37,4 +37,4 @@ IFS=$'\n\t' # Stop splitting on spaces like a maniac - Test on both `bash` 3.2 (macOS default) and 5.x (modern Linux). ### 6. Verification -- All scripts MUST pass `shellcheck`. If it's yellow or red, it's garbage. Fix it. \ No newline at end of file +- All scripts MUST pass `shellcheck`. If it's yellow or red, fix it.