Currently, laxPlacement option allows us to place flags before or after the positional arguments.
usage: test [-abc] <files>...
These are allowed:
test -a -b file1 file2
test file1 file2 -a -b
But this will fail:
test: unexpected option -b
usage: test [-abc] <files>...
See test -h/--help for more information
I think the third one is also valid. Can we support it?