From 540b2b74cc3b43be9abad7e3d29de1c1806a44e6 Mon Sep 17 00:00:00 2001 From: "Dr. Tobias Quathamer" Date: Thu, 11 Jan 2024 20:17:40 +0100 Subject: [PATCH] Do not reformat addon directory --- .php-cs-fixer.dist.php | 1 + .php_cs.dist | 1 + 2 files changed, 2 insertions(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index a563234771..1689c1f84e 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -4,6 +4,7 @@ declare(strict_types=1); $finder = PhpCsFixer\Finder::create() ->in(__DIR__) + ->notPath('addon') ->notPath('bin/dev') ->notPath('config') ->notPath('doc') diff --git a/.php_cs.dist b/.php_cs.dist index 897c6f1104..1d7056bdc1 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -6,6 +6,7 @@ require_once __DIR__ . '/bin/dev/php-cs-fixer/vendor/autoload.php'; $finder = PhpCsFixer\Finder::create() ->in(__DIR__) + ->notPath('addon') ->notPath('bin/dev') ->notPath('config') ->notPath('doc')