import { IncludeExcludeWithOptionsConfigSettings, MrCommandConfigSettings, MrCommandOptions } from '@cirrusct/mr-core'; export interface LintCommandOptions extends MrCommandOptions { fix?: boolean; format?: string; gitStaged?: boolean; out?: string; } export interface LintCommandArguments { files?: string[]; } export interface LintCommandConfigSettings extends IncludeExcludeWithOptionsConfigSettings, MrCommandConfigSettings {}