vibe-tools
Version:
CLI tools for AI agents
22 lines (21 loc) • 673 B
TypeScript
/**
* Implementation of the Xcode lint command.
* This command analyzes code and offers to fix warnings.
*
* Key features:
* - Warning analysis
* - Interactive fixes
* - SwiftLint integration
*/
import type { Command, CommandGenerator, CommandOptions } from '../../types';
export declare class LintCommand implements Command {
/**
* Main execution method for the lint command.
* Analyzes code and offers to fix warnings.
*
* @param query - Command query string (unused)
* @param options - Command options
* @yields Status messages and command output
*/
execute(query: string, options: CommandOptions): CommandGenerator;
}