From ad6e83f47a14658312b67b13e77f777174f71da8 Mon Sep 17 00:00:00 2001 From: Krzysztof Sikorski Date: Wed, 14 Feb 2024 23:49:16 +0100 Subject: [PATCH] Reduce verbosity of tools --- .ecrc | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ecrc b/.ecrc index 6d96081..d04462a 100644 --- a/.ecrc +++ b/.ecrc @@ -1,6 +1,6 @@ { "Version": "2.7.2", - "Verbose": true, + "Verbose": false, "Debug": false, "IgnoreDefaults": false, "SpacesAftertabs": false, diff --git a/Makefile b/Makefile index 02fc617..db3d691 100644 --- a/Makefile +++ b/Makefile @@ -41,12 +41,12 @@ lint_editorconfig: # lint PHP coding style across all directories .PHONY: lint_coding_style lint_coding_style: - docker container run --rm --user=$$(id --user):$$(id --group) --volume=$$PWD:/code ghcr.io/php-cs-fixer/php-cs-fixer:3.49-php8.3 check -vvv --show-progress=dots + docker container run --rm --user=$$(id --user):$$(id --group) --volume=$$PWD:/code ghcr.io/php-cs-fixer/php-cs-fixer:3.49-php8.3 check --verbose --show-progress=dots # fix PHP coding style across all directories .PHONY: fix_coding_style fix_coding_style: - docker container run --rm --user=$$(id --user):$$(id --group) --volume=$$PWD:/code ghcr.io/php-cs-fixer/php-cs-fixer:3.49-php8.3 fix -vvv --show-progress=dots + docker container run --rm --user=$$(id --user):$$(id --group) --volume=$$PWD:/code ghcr.io/php-cs-fixer/php-cs-fixer:3.49-php8.3 fix --verbose --show-progress=dots # website: clean all temporary files (cache, logs, etc) .PHONY: website_clean_all