Optional--When true, populate argv._ with everything before the -- and argv['--'] with everything after the --.
Note that with -- set, parsing for arguments still stops after the --.
OptionalaliasAn object mapping string names to strings or arrays of string argument names to use as aliases
OptionalbooleanA boolean, string or array of strings to always treat as booleans. If true will treat
all double hyphenated arguments without equals signs as boolean (e.g. affects --foo, not -f or --foo=bar)
OptionaldefaultAn object mapping string argument names to default values
OptionalstopWhen true, populate argv._ with everything after the first non-option
OptionalstringA string or array of strings argument names to always treat as strings
OptionalunknownA function which is invoked with a command line parameter not defined in the opts configuration object. If the function returns false, the unknown option is not added to argv
Minimist Options for Clirk
Clirk supports all minimist options except
boolean: truewhich is IMHO just unnecessary complexity without benefit.