-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrector.php
43 lines (35 loc) · 1015 Bytes
/
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
<?php
declare( strict_types=1 );
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
return static function ( RectorConfig $config ): void {
$config->sets( [
SetList::CODE_QUALITY,
SetList::CODING_STYLE,
SetList::TYPE_DECLARATION,
SetList::EARLY_RETURN,
SetList::INSTANCEOF,
SetList::PRIVATIZATION,
LevelSetList::UP_TO_PHP_82,
] );
$config->fileExtensions( ['php'] );
$config->importNames();
$config->removeUnusedImports();
$config->importShortClasses( false );
$config->phpstanConfig( __DIR__.'/phpstan-rector.neon' );
$config->paths( [
__DIR__.'/custom-post-type.php',
__DIR__.'/src',
] );
$config->skip(
[
// or fnmatch
__DIR__.'/vendor',
__DIR__.'/.github',
__DIR__.'/rector.php',
__DIR__.'/.php-cs-fixer.php',
__DIR__.'/sample.php',
]
);
};