-
Notifications
You must be signed in to change notification settings - Fork 967
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
WIP: Migrate from argparse to Typer #2452
base: dev
Are you sure you want to change the base?
Conversation
Important Auto Review SkippedAuto reviews are disabled on base/target branches other than the default branch. Please add the base/target branch pattern to the list of additional branches to be reviewed in the settings. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
|
It'd be great to put together better testing infra for our CLI so we can feel confident about this and also changes like #2428 (and quickly iterate on them in the future) |
Description
This PR replaces #2220
1. Replace
argparse
withtyper
Modify Slither CLI from
argparse
to Typer.With this migration we gain :
slither c<TAB>
)I kept the
crytic-compile
module as if, and created a backward compatibility layer with it.Notable points :
slither
) or with one of its subcommand (detect
). For instance, the formatting or the output file.slither .
has been added, converting it to the new format :slither detect .
.SlitherState
object is accessible. It contains every parsed argument on the upper command to be accessed by the sub commands if needed. For instance, this is where are stored thecrytic-compile
arguments.2. Update tools to use sub-commands
Each
slither
tool now has its own subcommand.Use like
slither mutate <>
Screenshots
Remaining TODO
While I tried to test the changes I made, it is touching almost every part of the code. Moreover, it contains breaking changes. So we should try to test a bit more (and on more than a single computer) before merging.