mache mal statistische analyse mit rein
This commit is contained in:
parent
853b280571
commit
c5fa857464
8 changed files with 444 additions and 57 deletions
28
ecs.php
Normal file
28
ecs.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use PhpCsFixer\Fixer\Import\NoUnusedImportsFixer;
|
||||
use Symplify\EasyCodingStandard\Config\ECSConfig;
|
||||
|
||||
return ECSConfig::configure()
|
||||
->withPaths([
|
||||
__DIR__ . '/public',
|
||||
__DIR__ . '/src',
|
||||
])
|
||||
->withRootFiles()
|
||||
->withRules([
|
||||
NoUnusedImportsFixer::class,
|
||||
])
|
||||
->withPhpCsFixerSets(
|
||||
per: true,
|
||||
php84Migration: true,
|
||||
)
|
||||
->withPreparedSets(
|
||||
arrays: true,
|
||||
comments: true,
|
||||
controlStructures: true,
|
||||
strict: true,
|
||||
cleanCode: true,
|
||||
)
|
||||
;
|
Loading…
Add table
Add a link
Reference in a new issue