This commit is contained in:
lubiana 2024-02-05 16:16:43 +01:00
commit 203233d2ed
71 changed files with 8213 additions and 0 deletions

18
ecs.php Normal file
View file

@ -0,0 +1,18 @@
<?php declare(strict_types=1);
use Lubiana\CodeQuality\LubiSetList;
use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer;
use Symplify\EasyCodingStandard\Config\ECSConfig;
return ECSConfig::configure()
->withPaths([
__DIR__ . '/config',
__DIR__ . '/public',
__DIR__ . '/src',
])
->withRootFiles()
->withSets([
LubiSetList::ECS,
])
->withSkip([LineLengthFixer::class])
;