Interface CLIOptions

interface CLIOptions {
    allDetectors: boolean;
    colors: boolean;
    config: undefined | string;
    disabledDetectors: undefined | string[];
    enabledDetectors: undefined | string[];
    listDetectors: boolean;
    listTools: boolean;
    minSeverity: Severity;
    newDetector: undefined | string;
    outputFormat: OutputFormat;
    outputPath: string;
    quiet: boolean;
    souffleBinary: string;
    soufflePath: string;
    souffleVerbose: boolean;
    tactStdlibPath: undefined | string;
    tools: undefined | ToolConfig[];
    verbose: boolean;
}

Properties

allDetectors: boolean
colors: boolean
config: undefined | string
disabledDetectors: undefined | string[]
enabledDetectors: undefined | string[]
listDetectors: boolean
listTools: boolean
minSeverity: Severity
newDetector: undefined | string
outputFormat: OutputFormat
outputPath: string
quiet: boolean
souffleBinary: string
soufflePath: string
souffleVerbose: boolean
tactStdlibPath: undefined | string
tools: undefined | ToolConfig[]
verbose: boolean