forked from otis22/reverso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecs.php
41 lines (37 loc) · 1.18 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
41
<?php
// ecs.php
use PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symplify\EasyCodingStandard\ValueObject\Option;
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
return static function (ContainerConfigurator $containerConfigurator): void {
// A. standalone rule
$services = $containerConfigurator->services();
$services->set(ArraySyntaxFixer::class)
->call('configure', [[
'syntax' => 'short',
]]);
$services->set(LineLengthFixer::class)
->call('configure', [[
'max_line_length' => 120, # default: 120
'break_long_lines' => true, # default: true
'inline_short_lines' => false, # default: true
]]);
// B. full sets
$parameters = $containerConfigurator->parameters();
$parameters->set(
Option::PATHS,
[
__DIR__ . '/src',
__DIR__ . '/tests'
]
);
$parameters->set(
Option::SETS,
[
SetList::CLEAN_CODE,
SetList::PSR_12
]
);
};