Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2f0ee49

Browse files
committed
Add Makefile for running linters etc.
1 parent a82a6bf commit 2f0ee49

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.PHONY: check phpstan phpcs markdownlint
2+
3+
check: phpstan phpcs markdownlint
4+
5+
phpstan:
6+
vendor/bin/phpstan analyse .
7+
8+
phpcs:
9+
vendor/bin/phpcs -s bin/ src/
10+
11+
markdownlint:
12+
mdl *.md

0 commit comments

Comments
 (0)