Reduce verbosity of tools
This commit is contained in:
parent
3bdb1a47f6
commit
ad6e83f47a
2 changed files with 3 additions and 3 deletions
2
.ecrc
2
.ecrc
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"Version": "2.7.2",
|
||||
"Verbose": true,
|
||||
"Verbose": false,
|
||||
"Debug": false,
|
||||
"IgnoreDefaults": false,
|
||||
"SpacesAftertabs": false,
|
||||
|
|
4
Makefile
4
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
|
||||
|
|
Reference in a new issue