Skip to content

Commit 7f3e7de

Browse files
authored
Merge pull request #223 from andreaswolf/cleanup-ecs-config
[TASK] Cleanup ECS config
2 parents bf2aa8c + a40bb6d commit 7f3e7de

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

ecs.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Symplify\EasyCodingStandard\Config\ECSConfig;
1616

1717
return ECSConfig::configure()
18-
// add a single rule
1918
->withConfiguredRule(NoSuperfluousPhpdocTagsFixer::class, [
2019
'allow_mixed' => true,
2120
])
@@ -31,9 +30,12 @@
3130
LineLengthFixer::class,
3231
YodaStyleFixer::class,
3332
OperatorLinebreakFixer::class,
34-
3533
])
3634
->withSkip([__DIR__ . '/packages/extension-installer/generated'])
37-
->withPreparedSets(psr12: true, symplify: true, common: true, cleanCode: true)
38-
->withPaths([__DIR__ . '/e2e', __DIR__ . '/src', __DIR__ . '/packages'])
35+
->withPreparedSets(psr12: true, common: true, symplify: true, cleanCode: true)
36+
->withPaths([
37+
__DIR__ . '/e2e',
38+
__DIR__ . '/src',
39+
__DIR__ . '/packages',
40+
])
3941
->withRootFiles();

0 commit comments

Comments
 (0)