From d1fdaad60795d0a87784e807122171772c10105e Mon Sep 17 00:00:00 2001 From: Richard Steinmetz Date: Mon, 30 Sep 2024 09:37:56 +0200 Subject: [PATCH] chore(php-cs-fixer): ignore node_modules Signed-off-by: Richard Steinmetz --- .php-cs-fixer.dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 8022e6104..eb6465a57 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -16,5 +16,6 @@ ->notPath('l10n') ->notPath('src') ->notPath('vendor') + ->notPath('node_modules') ->in(__DIR__); return $config;