Skip to content

Commit 4244bae

Browse files
committed
Let php codesniffer output the sniff codes in its output.
1 parent 9dbfd84 commit 4244bae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ check: checkstyle checkquality test
1111
.PHONY: checkstyle
1212
checkstyle:
1313
vendor/bin/php-cs-fixer fix --dry-run --diff --stop-on-violation --allow-risky=yes
14-
vendor/bin/phpcs --standard=Magento2 --ignore=./vendor/ .
15-
vendor/bin/phpcs --standard=PHPCompatibility --runtime-set testVersion 7.0- --ignore=./vendor/,./Test/ .
16-
vendor/bin/phpcs --standard=PHPCompatibility --runtime-set testVersion 7.1- ./Test/
14+
vendor/bin/phpcs -s --standard=Magento2 --ignore=./vendor/ .
15+
vendor/bin/phpcs -s --standard=PHPCompatibility --runtime-set testVersion 7.0- --ignore=./vendor/,./Test/ .
16+
vendor/bin/phpcs -s --standard=PHPCompatibility --runtime-set testVersion 7.1- ./Test/
1717
composer normalize --dry-run
1818

1919
.PHONY: checkquality

0 commit comments

Comments
 (0)