Files
archived-recipes-contrib/kocal/symfony-app-pack/1.0/ecs.php
Hugo Alliaume cdc5b03530 [Kocal/SymfonyAppPack] Add recipe (#1936)
* [Kocal/SymfonyAppPack] Add recipe

* Remove Makefile from copy-from-recipe
2026-02-11 03:01:04 +04:00

30 lines
641 B
PHP

<?php
declare(strict_types=1);
use Symplify\EasyCodingStandard\Config\ECSConfig;
return ECSConfig::configure()
->withParallel()
->withCache(__DIR__ . '/tools/.cache/ecs')
->withPaths([
__DIR__ . '/assets',
__DIR__ . '/config',
__DIR__ . '/public',
__DIR__ . '/src',
__DIR__ . '/tests',
__DIR__ . '/tools',
])
->withSkip([
__DIR__ . '/tools/.cache',
__DIR__ . '/config/bundles.php',
__DIR__ . '/config/reference.php',
])
->withPreparedSets(
psr12: true,
common: true,
strict: true,
cleanCode: true,
)
;