reboot
All checks were successful
/ ls (pull_request) Successful in 25s
/ ls (push) Successful in 25s

This commit is contained in:
lubiana 2024-06-09 16:43:34 +02:00
parent 3e33b45161
commit e2a33be4f9
No known key found for this signature in database
90 changed files with 2842 additions and 6060 deletions

13
ecs.php
View file

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