- What errors does it catch?
- Tab characters in indentation (YAML forbids them), mismatched quotes, duplicate keys, invalid anchors, and malformed type tags. Each error has a line/column reference.
- Does it validate against a schema?
- Syntax only. For schema validation (JSON Schema draft 2020-12) use the dedicated YAML Schema Validator.
- How does it handle multi-document files?
- Every document (separated by `---`) is validated independently. An error in document 2 doesn't mask a later error in document 3.
- Will it catch YAML 1.1 vs 1.2 differences?
- The most common footguns — unquoted `yes`/`no`/`on`/`off` being parsed as booleans — are flagged as warnings in 1.1 mode and ignored in 1.2 mode.