This repository was archived by the owner on Mar 9, 2026. It is now read-only.
fix(docs): correct inaccuracies in README and boundary-validator references#70
Merged
fix(docs): correct inaccuracies in README and boundary-validator references#70
Conversation
…rences - README: use bracket notation for index signature access in Quick Start example (result.data["username"] instead of result.data.username) - design-rules, validation-patterns: fix Set<unknown> to Set<string> in correct patterns; FormData keys are always strings per spec - api-contract: update versioning policy to reflect actual 0.x practice; 0.minor bumps are treated as effectively major (breaking changes allowed)
- security-rules: use ReadonlySet + .has() instead of array + .includes() to match actual FORBIDDEN_KEYS implementation - design-rules, validation-patterns, security-rules: update Last updated dates
Merged
17 tasks
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
Fix three documentation inaccuracies found during a review of README and boundary-validator reference files.
Changes
README.md
result.data["username"]) in Quick Start example to comply withnoUncheckedIndexedAccess; dot notation causes TS4111 in the project's TypeScript configdesign-rules.md / validation-patterns.md
Set<unknown>toSet<string>in correct-pattern code samples; FormData keys are alwaysstringper spec, matching the actual implementationapi-contract.md
Type of Change
Boundary Checklist
📘 AGENTS.md
Security & API Stability
parse,ParseResult,ParseIssue,IssueCode)Testing
bun run check:type:sourcepassesbun run testpassesbun run buildpassesSignature
🤖 Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com