@nx-dotnet/core
Version:
- Have an existing nx workspace. For creating this, see [nrwl's documentation](https://nx.dev/latest/angular/getting-started/nx-setup). - .NET SDK is installed, and `dotnet` is available on the path. For help on this, see [Microsoft's documentation](https
24 lines (23 loc) • 416 B
TypeScript
export interface FormatExecutorSchema {
noRestore?: boolean;
fixWhitespace?: boolean;
fixStyle?: string;
diagnostics?: string | string[];
include?: string[];
exclude?: string[];
check: boolean;
report?: string;
binarylog?: string;
verbosity:
| 'q'
| 'quiet'
| 'm'
| 'minimal'
| 'n'
| 'normal'
| 'd'
| 'detailed'
| 'diag'
| 'diagnostic';
fix?: boolean;
}