From 73757994d12faab8862fb7713926dbb054c70b0f Mon Sep 17 00:00:00 2001 From: Ariel Barreiro Date: Wed, 17 Jun 2026 22:44:51 -0300 Subject: [PATCH] fix: ignore .ddev directory in phpcbf execution Add ignore option for .ddev directory in phpcbf command same as phpcs --- commands/web/phpcbf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/web/phpcbf b/commands/web/phpcbf index 25393e0..32aa2e1 100755 --- a/commands/web/phpcbf +++ b/commands/web/phpcbf @@ -14,4 +14,4 @@ if ! command -v phpcbf >/dev/null; then exit 1 fi test -e phpcs.xml.dist || curl -OL https://git.drupalcode.org/project/gitlab_templates/-/raw/default-ref/assets/phpcs.xml.dist -phpcbf -s --report-full --report-summary --report-source $DDEV_DOCROOT/$DRUPAL_PROJECTS_PATH "$@" +phpcbf -s --report-full --report-summary --report-source $DDEV_DOCROOT/$DRUPAL_PROJECTS_PATH --ignore=*/.ddev/* "$@"