klasp 0.3.1

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
11
12
//! Output formatters for `klasp gate`.
//!
//! Four formatters ship in v0.3:
//! - [`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
//! - [`json`] — Stable JSON (KLASP_OUTPUT_SCHEMA = 1) for downstream tooling

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