-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrector.php
More file actions
47 lines (42 loc) · 1.44 KB
/
Copy pathrector.php
File metadata and controls
47 lines (42 loc) · 1.44 KB
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
45
46
47
<?php
declare( strict_types=1 );
use Rector\CodeQuality\Rector\Empty_\SimplifyEmptyCheckOnEmptyArrayRector;
use Rector\CodingStyle\Rector\Encapsed\EncapsedStringsToSprintfRector;
use Rector\Config\RectorConfig;
use Rector\Exception\Configuration\InvalidConfigurationException;
use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
try {
return RectorConfig::configure()
->withPreparedSets(
codeQuality: true,
codingStyle: true,
typeDeclarations: true,
privatization: true,
naming: true,
earlyReturn: true,
rectorPreset: true
)
->withPhpSets( php82: true )
->withFileExtensions( ['php'] )
->withImportNames( importShortClasses: false, removeUnusedImports: true )
->withParallel( )
->withPHPStanConfigs( [
__DIR__.'/phpstan-rector.neon',
] )
->withPaths( [
__DIR__.'/src',
__DIR__.'/wp-performance.php',
] )
->withSkip( [
__DIR__.'/vendor',
__DIR__.'/cache',
RemoveExtraParametersRector::class,
EncapsedStringsToSprintfRector::class,
DisallowedEmptyRuleFixerRector::class,
SimplifyEmptyCheckOnEmptyArrayRector::class,
] )
;
} catch ( InvalidConfigurationException $e ) {
var_dump( $e->getMessage() );
}