Skip to content

Instantly share code, notes, and snippets.

@hasanen
Last active August 29, 2015 14:06
Show Gist options
  • Save hasanen/12593a1e237d5c6e5d57 to your computer and use it in GitHub Desktop.
Save hasanen/12593a1e237d5c6e5d57 to your computer and use it in GitHub Desktop.
Check syntax of all yaml-files under current folder (in zsh)
gem install yaml-lint
for file in **/*.yml; do yaml-lint $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment