From 6992e001d03201cc4c8ab04822c937c694305838 Mon Sep 17 00:00:00 2001 From: PythonWoods-Dev Date: Thu, 7 May 2026 20:51:06 +0200 Subject: [PATCH] =?UTF-8?q?fix(guard):=20remove=20Pre-Launch=20Guard=20?= =?UTF-8?q?=E2=80=94=20zenzic.dev=20is=20live?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All zenzic.dev URLs now resolve (deployed via release-docs.yml). v0.7.0 tag is live on GitHub. Permanent exclusion retained: contributor-covenant.org (flaky third-party). --- justfile | 10 +--------- scripts/pre-commit-zenzic.sh | 8 ++------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/justfile b/justfile index de41775..707c07f 100644 --- a/justfile +++ b/justfile @@ -71,18 +71,10 @@ preflight: check *args: #!/usr/bin/env bash set -euo pipefail - # Pre-Launch Guard — remove after GA deploy when all URLs resolve + # Permanent exclusion: contributor-covenant.org is a flaky third-party URL. GUARD=( - --exclude-url "https://zenzic.dev/blog/" - --exclude-url "https://zenzic.dev/docs/explanation/structural-integrity" - --exclude-url "https://zenzic.dev/developers/" - --exclude-url "https://zenzic.dev/it/developers/" - --exclude-url "https://github.com/PythonWoods/zenzic/releases/tag/v0.7.0" --exclude-url "https://www.contributor-covenant.org/version/2/1/code_of_conduct.html" ) - if [[ ${#GUARD[@]} -gt 0 ]]; then - echo -e "\033[33m[QUARTZ WARNING] Pre-Launch Guard active: skipping internal/future URLs. DO NOT release with these guards active.\033[0m" >&2 - fi uvx --from "{{core_ref}}" zenzic check all --strict "${GUARD[@]}" {{args}} # Static type check diff --git a/scripts/pre-commit-zenzic.sh b/scripts/pre-commit-zenzic.sh index 58cc74d..6604ef5 100755 --- a/scripts/pre-commit-zenzic.sh +++ b/scripts/pre-commit-zenzic.sh @@ -49,13 +49,9 @@ fi echo "Mode: Local Zenzic (${ZENZIC_PATH})" -# Pre-Launch Guard — remove after GA deploy when all URLs resolve +# Permanent exclusion: contributor-covenant.org is a flaky third-party URL. GUARD=( - --exclude-url "https://zenzic.dev/blog/" - --exclude-url "https://zenzic.dev/docs/explanation/structural-integrity" - --exclude-url "https://zenzic.dev/developers/" - --exclude-url "https://zenzic.dev/it/developers/" - --exclude-url "https://github.com/PythonWoods/zenzic/releases/tag/v0.7.0" + --exclude-url "https://www.contributor-covenant.org/version/2/1/code_of_conduct.html" ) uv run --project "${ZENZIC_PATH}" zenzic check all --strict "${GUARD[@]}" "$@"