YAML 검증기
YAML 구문을 검증하고, 일관된 들여쓰기로 포맷하고, JSON으로 변환합니다. 구성 파일에 유용합니다.
Note: This validator supports YAML 1.1 specification. Multi-document YAML files will only parse the first document.
YAML - 기술 세부 정보
YAML is a human-readable data serialization format commonly used for configuration files. It uses indentation for structure and supports comments, making it more readable than JSON.
명령줄 대안
# Validate YAML with yamllint pip install yamllint yamllint config.yaml # Convert YAML to JSON with yq yq -o json config.yaml