fix: reject unknown codegen CLI arguments - #1419
Merged
Merged
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (5)
📝 WalkthroughWalkthroughOpenAPI 및 RPC 코드 생성 CLI가 알 수 없는 옵션과 지원되지 않는 위치 인자를 안정적인 진단과 함께 거부하도록 변경되었습니다. 플래그 정의가 중앙화되었고, 잘못된 입력 및 단일 대시로 시작하는 값에 대한 테스트가 추가되었습니다. ChangesCLI 인자 검증
Estimated code review effort: 3 (Moderate) | ~25 minutes Sequence Diagram(s)sequenceDiagram
participant User
participant parseArgs
participant runCli
participant Codegen
User->>parseArgs: CLI arguments
parseArgs-->>runCli: invalid diagnostic or parsed options
runCli-->>User: diagnostic and help on invalid input
runCli->>Codegen: load and generate only for valid input
Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
📊 Benchmark Results✅ All benchmarks passed
Updated: 2026-07-16T12:47:23.743Z · Commit: c23642e |
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.
Outcome
OpenAPI and RPC codegen commands now reject unknown options and unsupported positional arguments before loading generation modules. Stable
CROCO_CLI_UNKNOWN_OPTIONandCROCO_CLI_UNEXPECTED_POSITIONALdiagnostics prevent misspelled output/check flags from silently changing behavior, including when combined with help.Documented compatibility flags and existing single-dash-prefixed option values remain accepted. Each CLI uses one declarative flag schema for validation and extraction, and both publishable packages include patch changesets.
Verification
pnpm --filter @croco/openapi-spec test— 54/54pnpm --filter @croco/rpc-codegen test— 109/109pnpm strict-contract-typecheck— baseline matched, 0 added diagnosticspnpm check— passedpnpm test— 226/226pnpm typecheck— 225/225Review gates
--out/--checkmisspellings, unexpected positionals, and help+unknown bypasses before generation; compatibility paths remain tested.No known issue-scoped residual risk remains.
Fixes #1397.
Summary by CodeRabbit