-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathecs.php
More file actions
32 lines (29 loc) · 791 Bytes
/
ecs.php
File metadata and controls
32 lines (29 loc) · 791 Bytes
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
<?php
declare(strict_types=1);
use PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer;
use PhpCsFixer\Fixer\Operator\NotOperatorWithSuccessorSpaceFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
return ECSConfig::configure()
->withParallel()
->withPreparedSets(
psr12: true,
common: false,
symplify: false,
arrays: true,
comments: true,
docblocks: true,
spaces: true,
namespaces: true,
controlStructures: true,
phpunit: true,
strict: true,
cleanCode: true,
)
->withPaths([
__DIR__ . '/src',
__DIR__ . '/tests',
])
->withSkip([
ClassAttributesSeparationFixer::class,
NotOperatorWithSuccessorSpaceFixer::class,
]);