mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
Migrate ECS config to PHP format.
This commit is contained in:
parent
8ab021c775
commit
2853e471c4
2 changed files with 27 additions and 18 deletions
27
ecs.php
Normal file
27
ecs.php
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||||
use Symplify\EasyCodingStandard\Configuration\Option;
|
||||
use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
|
||||
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
|
||||
|
||||
return static function (ContainerConfigurator $containerConfigurator): void {
|
||||
$parameters = $containerConfigurator->parameters();
|
||||
$parameters->set(Option::SETS, [
|
||||
SetList::CLEAN_CODE,
|
||||
SetList::PSR_12,
|
||||
SetList::SYMFONY,
|
||||
//SetList::SYMPLIFY
|
||||
]);
|
||||
|
||||
$parameters->set(Option::PATHS, [
|
||||
__DIR__ . '/src',
|
||||
__DIR__ . '/tests',
|
||||
]);
|
||||
|
||||
$parameters->set(Option::SKIP, [
|
||||
LineLengthFixer::class => null
|
||||
]);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue