-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrector.php
44 lines (38 loc) · 1.3 KB
/
rector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
declare( strict_types=1 );
use Rector\CodeQuality\Rector\Empty_\SimplifyEmptyCheckOnEmptyArrayRector;
use Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector;
use Rector\Config\RectorConfig;
use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
return static function ( RectorConfig $config ): void {
$config->sets( [
SetList::CODE_QUALITY,
SetList::CODING_STYLE,
SetList::TYPE_DECLARATION,
SetList::EARLY_RETURN,
SetList::NAMING,
SetList::PRIVATIZATION,
LevelSetList::UP_TO_PHP_82,
] );
$config->fileExtensions( ['php'] );
$config->importNames();
$config->removeUnusedImports();
$config->importShortClasses( false );
$config->parallel();
$config->phpstanConfig( __DIR__.'/phpstan-rector.neon' );
$config->paths( [
__DIR__.'/src',
__DIR__.'/wp-performance.php',
] );
$config->skip( [
__DIR__.'/vendor',
__DIR__.'/cache',
RemoveExtraParametersRector::class,
EncapsedStringsToSprintfRector::class,
DisallowedEmptyRuleFixerRector::class,
SimplifyEmptyCheckOnEmptyArrayRector::class,
] );
};