ソースを参照

DevKit updates (#3919)

Sonata CI 9 年 前
コミット
4cc844928d
1 ファイル変更3 行追加2 行削除
  1. 3 2
      Makefile

+ 3 - 2
Makefile

@@ -9,8 +9,9 @@ all:
 
 lint:
 	composer validate
-	find . -name '*.yml' -not -path './vendor/*' | xargs yaml-lint
-	find . \( -name '*.xml' -or -name '*.xliff' \) -not -path './vendor/*' -type f \
+	find . -name '*.yml' -not -path './vendor/*' -not -path './Resources/public/vendor/*' | xargs yaml-lint
+	find . \( -name '*.xml' -or -name '*.xliff' \) \
+		-not -path './vendor/*' -not -path './Resources/public/vendor/*' -type f \
 		-exec xmllint --encode UTF-8 --output '{}' --format '{}' \;
 	git diff --exit-code