Add option validation for commands - #10
Merged
eliothedeman merged 1 commit intoDec 1, 2025
Merged
Conversation
…nterface This change adds the ability to validate individual options on commands when the command itself doesn't implement the Validator interface. Previously, the Validator interface was only checked at the command level. Changes: - Added validateOptions() method to check each option that implements Validator - Integrated validation into both Cobra and Urfave bindings - Validation runs after parsing but before command execution - If the command implements Validator, option validation is skipped - Added comprehensive tests for both Cobra and Urfave bindings The validation respects the following behavior: 1. If command doesn't implement Validator: validate each option individually 2. If command implements Validator: skip individual option validation 3. Validation errors are properly returned with descriptive messages
eliothedeman
deleted the
claude/add-option-validation-01Ty7eqgBurzVbJYkPtX4yW8
branch
December 1, 2025 19: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.
…nterface
This change adds the ability to validate individual options on commands when the command itself doesn't implement the Validator interface. Previously, the Validator interface was only checked at the command level.
Changes:
The validation respects the following behavior: