-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathecs.php
More file actions
31 lines (26 loc) · 1.2 KB
/
ecs.php
File metadata and controls
31 lines (26 loc) · 1.2 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
<?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;
use PHP_CodeSniffer\Standards\Generic\Sniffs\Files\LineLengthSniff;
return static function (ContainerConfigurator $containerConfigurator): void {
// A. full sets
$containerConfigurator->import(SetList::PSR_12);
$containerConfigurator->import(SetList::CLEAN_CODE);
// B. standalone rule
$services = $containerConfigurator->services();
$services->set(LineLengthSniff::class)
->property('absoluteLineLimit', 120);
$services->set(LineLengthFixer::class)
->call('configure', [[
'max_line_length' => 120, # default: 120
'break_long_lines' => true, # default: true
'inline_short_lines' => true, # default: true
]]);
$parameters = $containerConfigurator->parameters();
// alternative to CLI arguments, easier to maintain and extend
$parameters->set(Option::PATHS, [__DIR__ . '/src', __DIR__ . '/tests']);
};