klasp 0.2.5

Block AI coding agents on the same quality gates your humans hit. See https://github.com/klasp-dev/klasp
Documentation
1
2
3
4
5
6
7
8
9
10
//! Output formatters for `klasp gate`.
//!
//! Three formatters ship in v0.2.5:
//! - [`terminal`] — human-readable stderr text (default, v0.1 behaviour)
//! - [`junit`] — JUnit XML (Surefire/Jenkins schema) for CI test reporters
//! - [`sarif`] — SARIF 2.1.0 JSON for GitHub Code Scanning / security tools

pub mod junit;
pub mod sarif;
pub mod terminal;