Merge pull request #4143 from TehThanos/lintMakeTarget

Added lint rule to Makefile
This commit is contained in:
Julius Härtl
2022-10-20 08:29:15 +02:00
committed by GitHub

View File

@@ -30,6 +30,16 @@ build: clean-dist install-deps build-js
release: clean-dist install-deps-nodev build-js
lint: lint-js lint-php
lint-js:
npm run lint
npm run stylelint
lint-php:
composer run lint 1>/dev/null
composer run cs:check
build-js: install-deps-js
npm run build