forked from grgk/seo-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rector.php
47 lines (35 loc) · 1.08 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
45
46
47
<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector;
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
use Rector\Set\ValueObject\LevelSetList;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->phpstanConfig(__DIR__ . '/phpstan.neon.dist');
$rectorConfig->paths([
__DIR__ . '/src',
]);
$rectorConfig->skip([
__DIR__ . 'src/examples',
__DIR__ . 'src/locale',
__DIR__ . 'src/vendor',
]);
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_83,
]);
$rectorConfig->parallel(240, 8, 8);
$rectorConfig->skip([
AddOverrideAttributeToOverriddenMethodsRector::class,
]);
$rectorConfig::configure()->withPreparedSets(
deadCode: true,
codeQuality: true,
codingStyle: true,
typeDeclarations: true,
privatization: true,
naming: true,
instanceOf: true,
earlyReturn: true,
strictBooleans: true,
);
};