From a40bb6dcd1f9a4d804cfecc9eb1672cd73453c2d Mon Sep 17 00:00:00 2001 From: Simon Schaufelberger Date: Fri, 30 Aug 2024 13:57:27 +0200 Subject: [PATCH] [TASK] Cleanup ECS config --- ecs.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ecs.php b/ecs.php index 9d10807b..15662b6f 100644 --- a/ecs.php +++ b/ecs.php @@ -15,7 +15,6 @@ use Symplify\EasyCodingStandard\Config\ECSConfig; return ECSConfig::configure() - // add a single rule ->withConfiguredRule(NoSuperfluousPhpdocTagsFixer::class, [ 'allow_mixed' => true, ]) @@ -31,9 +30,12 @@ LineLengthFixer::class, YodaStyleFixer::class, OperatorLinebreakFixer::class, - ]) ->withSkip([__DIR__ . '/packages/extension-installer/generated']) - ->withPreparedSets(psr12: true, symplify: true, common: true, cleanCode: true) - ->withPaths([__DIR__ . '/e2e', __DIR__ . '/src', __DIR__ . '/packages']) + ->withPreparedSets(psr12: true, common: true, symplify: true, cleanCode: true) + ->withPaths([ + __DIR__ . '/e2e', + __DIR__ . '/src', + __DIR__ . '/packages', + ]) ->withRootFiles();