@code-pushup/cli
Version:
A CLI to run all kinds of code quality measurements to align your team with company goals
21 lines (20 loc) • 951 B
TypeScript
import type { CoreConfig } from '@code-pushup/models';
import type { FilterOptions } from './filter.model.js';
import type { GlobalOptions } from './global.model';
/**
*
* | CP_VERBOSE value | CLI `--verbose` flag | Effect |
* |------------------|----------------------|--------|
* | true | - | true |
* | false | - | false |
* | - | - | false |
* | - | true | true |
* | - | false | false |
* | true | true | true |
* | false | true | true |
* | true | false | false |
* | false | false | false |
*
* @param originalProcessArgs
*/
export declare function setVerboseMiddleware<T extends GlobalOptions & CoreConfig & FilterOptions>(originalProcessArgs: T): T;