cats 0.1.20

Coding Agent ToolS - A comprehensive toolkit for building AI-powered coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Linting integration for various languages

use anyhow::Result;

pub trait Linter {
    fn name(&self) -> &str;
    fn lint(&self, content: &str, file_type: &str) -> Result<Vec<String>>;
    fn supports_file_type(&self, file_type: &str) -> bool;
}

// Placeholder for linting implementation