We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lint-all
1 parent 94977d1 commit 38c0866Copy full SHA for 38c0866
Makefile
@@ -41,6 +41,7 @@ help:
41
@echo "ngrok-up - start ngrok"
42
@echo "ngrok-down - stop ngrok"
43
@echo ""
44
+ @echo "lint-all - lint codebase with all linters step by step"
45
@echo "lint-allowed-licenses - lint dependencies for valid licenses"
46
@echo "lint-cs-fixer - lint source code with php-cs-fixer"
47
@echo "lint-cs-fixer-fix - fix source code with php-cs-fixer"
@@ -133,6 +134,9 @@ lint-rector:
133
134
lint-rector-fix:
135
docker-compose run --rm php-cli vendor/bin/rector process
136
137
+.PHONY: lint-all
138
+lint-all: lint-allowed-licenses lint-cs-fixer lint-phpstan lint-rector
139
+
140
# unit tests
141
.PHONY: test-unit
142
test-unit:
0 commit comments