Skip to content

Tags: Mr0grog/yaml-doctor

Tags

v0.3.0

Toggle v0.3.0's commit message
Version 0.3.0

There are no major features in this update, but this does bump the minimum required version of Node.js to 16.0. It resolves warnings for packages YAML-Doctor depends on that have stopped being maintained.

v0.2.0

Toggle v0.2.0's commit message

Verified

This tag was signed with the committer’s verified signature.
Mr0grog Rob Brackett
Version 0.2.0

This is a minor version change because the supported CLI options have been drastically improved.

- Clarify messaging on under-indented lines and explain how much they *should* be indented.

- Support specifying multiple paths, directories, and globs on the CLI. Globs not processed by your shell are processed with the `glob` package. Check it's README for complex patterns you can use. For example:

        # Check a directory and all its subfolders. In this case, only files
        # matching *.yaml, *.yml, and *.md will be checked.
        > yaml-doctor path/to/directory
        # Check files matching a glob pattern
        > yaml-doctor configuration/*.config
        # Check a list of different files, directories, and globs.
        > yaml-doctor this/file.yaml that/file.yaml some/directory/*.yaml

- Add `--version` CLI option.

v0.1.1

Toggle v0.1.1's commit message

Verified

This tag was signed with the committer’s verified signature.
Mr0grog Rob Brackett
Version 0.1.1

This is the first meaningful release of YAML Doctor! This project was originally written for Asana, Inc. to help provide better tools for content authors to understand mistakes in Markdown front-matter that they are editing. The code in this version is what we've extracted to open-source from that original work.

A huge thanks to the good folks at Asana for supporting the work to open-source this code!