reboot
This commit is contained in:
parent
3e33b45161
commit
e2a33be4f9
90 changed files with 2842 additions and 6060 deletions
13
ecs.php
13
ecs.php
|
@ -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]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue