mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 12:10:41 -05:00
34 lines
794 B
PHP
34 lines
794 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Caching\ValueObject\Storage\FileCacheStorage;
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__.'/app',
|
|
__DIR__.'/bootstrap',
|
|
__DIR__.'/config',
|
|
__DIR__.'/lang',
|
|
__DIR__.'/public',
|
|
__DIR__.'/resources',
|
|
__DIR__.'/routes',
|
|
__DIR__.'/tests',
|
|
])
|
|
->withCache(
|
|
cacheDirectory: '.rector/cache',
|
|
cacheClass: FileCacheStorage::class
|
|
)
|
|
->withPreparedSets(
|
|
deadCode: true,
|
|
codeQuality: true,
|
|
codingStyle: true,
|
|
typeDeclarations: true,
|
|
privatization: true,
|
|
naming: true,
|
|
rectorPreset: true,
|
|
)
|
|
->withPhpSets()
|
|
->withImportNames(removeUnusedImports: true);
|