Last active
August 29, 2015 14:06
-
-
Save hasanen/12593a1e237d5c6e5d57 to your computer and use it in GitHub Desktop.
Check syntax of all yaml-files under current folder (in zsh)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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