From f63b6e4dcdfed8006b20b17311b2ba01dea103eb Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 12 Dec 2016 13:46:01 +0000 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20lint=20php=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Makefile b/Makefile index d121e471..58d7e1aa 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,6 @@ .PHONY: sass frontend js compress lint-sass lint-js lint-php jsfiles := $(wildcard resources/assets/js/*.js) sassfiles := $(wildcard resources/assets/sass/*.scss) -phpfiles := $(wildcard app/*.php) \ -$(wildcard app/**/*.php) \ -$(wildcard app/**/**/*.php) \ -$(wildcard app/**/**/**/*.php) yarnfiles:= node_modules/whatwg-fetch/fetch.js \ node_modules/alertify.js/dist/js/alertify.js \ node_modules/store2/dist/store2.min.js \ @@ -48,8 +44,3 @@ lint-js: $(jsfiles) for f in $^; do \ eslint $$f; \ done; - -lint-php: $(phpfiles) - for f in $^; do \ - php -l $$f; \ - done;