[Minor] --verbose flag is defined but never used #2
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
In
src/index.js, the CLI defines--verboseoption but the flag value is never read or used anywhere:Suggested Fix
Either implement verbose logging (e.g., set
process.env.DEBUGor increase chalk verbosity) or remove the unused option.