Files
laravel-data-sync/rector.php
2024-12-11 12:58:22 +02:00

17 lines
360 B
PHP

<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([
__DIR__.'/config',
__DIR__.'/src',
__DIR__.'/tests',
])
->withPhpSets()
->withPreparedSets(deadCode: true, codeQuality: true)
->withImportNames(removeUnusedImports: true)
->withTypeCoverageLevel(0);