From 6e7481e5df76b6f693356a811d8e6287c5d51a5d Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Tue, 12 Dec 2023 10:55:31 +0100 Subject: [PATCH] [BUGFIX] Skip system/settings.php The config/system/settings.php is commonly updated through the TYPO3 backend and exported accordingly. Thus coding style standards can and should not be applied here. --- src/CsFixerConfig.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/CsFixerConfig.php b/src/CsFixerConfig.php index 13bdac6..ca7b67f 100644 --- a/src/CsFixerConfig.php +++ b/src/CsFixerConfig.php @@ -107,6 +107,9 @@ public static function create(): static 'var', 'vendor', ]) + ->notPath([ + 'config/system/settings.php', + ]) ; return $static;