-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathecs.php
40 lines (37 loc) · 1.61 KB
/
ecs.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
declare(strict_types=1);
use PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer;
use PhpCsFixer\Fixer\ControlStructure\YodaStyleFixer;
use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer;
use PhpCsFixer\Fixer\Operator\OperatorLinebreakFixer;
use PhpCsFixer\Fixer\Phpdoc\GeneralPhpdocAnnotationRemoveFixer;
use PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer;
use PhpCsFixer\Fixer\Strict\DeclareStrictTypesFixer;
use Symplify\CodingStandard\Fixer\ArrayNotation\ArrayOpenerAndCloserNewlineFixer;
use Symplify\CodingStandard\Fixer\ArrayNotation\StandaloneLineInMultilineArrayFixer;
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
return ECSConfig::configure()
->withConfiguredRule(NoSuperfluousPhpdocTagsFixer::class, [
'allow_mixed' => true,
])
->withConfiguredRule(GeneralPhpdocAnnotationRemoveFixer::class, [
'annotations' => ['throws', 'author', 'package', 'group'],
])
->withRules([
NoUnusedImportsFixer::class,
ArraySyntaxFixer::class,
StandaloneLineInMultilineArrayFixer::class,
ArrayOpenerAndCloserNewlineFixer::class,
DeclareStrictTypesFixer::class,
LineLengthFixer::class,
YodaStyleFixer::class,
OperatorLinebreakFixer::class,
])
->withSkip([
__DIR__ . '/packages/extension-installer/generated',
__DIR__ . '/packages/fractor-rule-generator/templates',
])
->withPreparedSets(psr12: true, common: true, symplify: true, cleanCode: true)
->withPaths([__DIR__ . '/e2e', __DIR__ . '/src', __DIR__ . '/packages'])
->withRootFiles();