From b604fe37d971d672745e1422f188da73a514ffee Mon Sep 17 00:00:00 2001 From: Ondrej Machulda Date: Mon, 26 Mar 2018 00:09:41 +0200 Subject: [PATCH] Fix yaml linter not linting multiple files See https://github.com/j13k/yaml-lint/issues/3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e0cb6dd..284f4ba 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "@lint" ], "lint": [ - "vendor/bin/yaml-lint *.yml", + "for FN in *.yml; do vendor/bin/yaml-lint \"$FN\"; done", "vendor/bin/yaml-sort-checker" ] }