posixLike constant

ArgConfig const posixLike

A configuration approximating POSIX-style argument parsing. This is similar to gnu, but options cannot come after a positional by default. Note that this also includes long option support, as Plade does not support disabling long options.

Implementation

static const posixLike = ArgConfig(
    longPrefix: '--',
    shortPrefix: '-',
    noOptionsAfterPositional: true,
    disableOptionsAfter: '--');