gts-validator 0.10.1

GTS identifier validator for documentation and configuration files
Documentation
1
2
3
4
5
6
7
8
9
10
//! Format-specific scanners for GTS identifier discovery and validation.
//!
//! Each sub-module handles a specific file format:
//! - `markdown` — Markdown files with code-block state machine
//! - `json` — JSON tree-walker
//! - `yaml` — YAML scanner (delegates to JSON walker via `serde_json::Value`)

pub mod json;
pub mod markdown;
pub mod yaml;