Interface CommandLineSettings

These are settings only used by the command line application.

interface CommandLineSettings {
    cache?: CacheSettings;
    failFast?: boolean;
}

Hierarchy (view full)

Properties

Properties

Define cache settings.

failFast?: boolean

Exit with non-zero code as soon as an issue/error is encountered (useful for CI or git hooks)

Default

false