-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathecs.php
More file actions
40 lines (36 loc) · 1.21 KB
/
ecs.php
File metadata and controls
40 lines (36 loc) · 1.21 KB
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\CastNotation\CastSpacesFixer;
use PhpCsFixer\Fixer\FunctionNotation\FunctionDeclarationFixer;
use PhpCsFixer\Fixer\Operator\ConcatSpaceFixer;
use PhpCsFixer\Fixer\Operator\NotOperatorWithSuccessorSpaceFixer;
use Symplify\CodingStandard\Fixer\ArrayNotation\ArrayOpenerAndCloserNewlineFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
return function (ECSConfig $ecsConfig): void {
$ecsConfig->paths([
__DIR__.'/src',
__DIR__.'/tests',
__DIR__.'/bin/hell2shape',
]);
$ecsConfig->skip([
]);
$ecsConfig->sets([
SetList::PSR_12,
SetList::SPACES,
SetList::ARRAY,
SetList::DOCBLOCK,
SetList::NAMESPACES,
SetList::COMMENTS,
SetList::CLEAN_CODE,
]);
$ecsConfig->rulesWithConfiguration([
ConcatSpaceFixer::class => ['spacing' => 'none'],
CastSpacesFixer::class => ['space' => 'none'],
FunctionDeclarationFixer::class => ['closure_fn_spacing' => 'none'],
]);
$ecsConfig->skip([
NotOperatorWithSuccessorSpaceFixer::class,
ArrayOpenerAndCloserNewlineFixer::class,
]);
};