Interface CLIOptions

interface CLIOptions {
    allDetectors?: boolean;
    config?: string;
    detectors?: string[];
    dumpAst?: boolean;
    dumpCfg?: "json" | "dot";
    dumpConfig?: boolean;
    dumpIncludeStdlib?: boolean;
    dumpOutput?: string;
    quiet?: boolean;
    souffleBinary?: string;
    soufflePath?: string;
    souffleVerbose?: boolean;
    tactStdlibPath?: string;
    verbose?: boolean;
}

Properties

allDetectors?: boolean
config?: string
detectors?: string[]
dumpAst?: boolean
dumpCfg?: "json" | "dot"
dumpConfig?: boolean
dumpIncludeStdlib?: boolean
dumpOutput?: string
quiet?: boolean
souffleBinary?: string
soufflePath?: string
souffleVerbose?: boolean
tactStdlibPath?: string
verbose?: boolean