소스 검색

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