Checks whether YAML is syntactically valid.
The YAML validator checks whether a YAML document is well-formed by parsing it and reporting the first syntax error it finds. Paste your config, manifest, or pipeline file and instantly see whether it is valid YAML or get the exact line and reason it failed. It is handy for catching indentation mistakes, unterminated structures, and duplicate keys before they break your build.
No. Validation runs entirely in your browser using a JavaScript YAML parser. Your input never leaves your device and nothing is sent to a server.
Any document the parser can load as a single YAML document, including mappings, sequences, scalars, comments, and even an empty or whitespace-only document. If it parses without error, you get a confirmation message.
The validator loads a single YAML document, so a stream separated by --- markers will report an error. Validate each document on its own.
Yes. Two identical keys in the same mapping are rejected as a syntax error, which helps catch a common copy-paste mistake.
Yes. When parsing fails, the error message includes the reason and the line and column where the problem was detected.