chore: remove obsolete/corrupted check-no-vlang.sh gate - #29
Merged
Conversation
V (vlang.io) was banned from the estate long ago and check-no-vlang.sh enforced that. A prior global search-and-replace rewrote "V" -> "zig" throughout the script, so it now bans Zig -- the estate's primary systems/FFI language -- instead of V. Delete the script and the CI step that invoked it; V is long gone either way so there is nothing left to enforce. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
hyperpolymath
marked this pull request as ready for review
July 27, 2026 18:19
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



What
Removes the estate's
scripts/check-no-vlang.shgate and the CI step thatinvoked it.
Why
V (vlang.io) was banned from the estate years ago.
check-no-vlang.shwaswritten to enforce that ban. At some point a global search-and-replace ran
"V" -> "zig" across the file and it now bans Zig instead -- Zig is the
estate's primary systems/FFI language (Zig-first ABI/FFI doctrine), so this
script has been silently failing CI for any repo that legitimately touches
Zig, and is worthless as a V-lang check now that "V" no longer appears in it.
Evidence of the corruption (from the script's own comments before removal):
check-no-vlang.sh — enforce "ziguage is banned in the estate".(i.e. "Vlanguage" got replaced with "ziguage")
Estate rule: zig (vlang.io) is banned.(vlang.io is V's site, not Zig's)PATTERNS=( ... 'zig' 'zig' 'vlang' ... )(a duplicated replacement)zig has been replaced by zig-unified-api-adapter.V is long retired from the estate and this check is obsolete either way, so
rather than fix the corrupted pattern list, this PR deletes the script and
its CI step outright.
What changed
git rm scripts/check-no-vlang.shCI workflow that invoked it (job/workflow otherwise untouched).
No other files were modified.
🤖 Generated with Claude Code