mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-26 03:34:02 +00:00
17 lines
360 B
PHP
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);
|