helm-schema-k8s 0.0.4

Generate an accurate JSON schema for any helm chart
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod canonicalise;
#[expect(
    clippy::module_inception,
    reason = "the private diagnostic model shares the public module's domain name"
)]
mod diagnostic;
mod format_json;
mod format_text;
mod sink;

pub use diagnostic::{Diagnostic, DiagnosticKey};
pub use format_json::format_diagnostic_json;
pub use format_text::format_diagnostic_text;
pub use sink::DiagnosticSink;