-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rector.php
86 lines (73 loc) · 3.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\Identical\FlipTypeControlToUseExclusiveTypeRector;
use Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector;
use Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector;
use Rector\CodingStyle\Rector\ClassMethod\MakeInheritedMethodVisibilitySameAsParentRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\Assign\RemoveUnusedVariableAssignRector;
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPrivateMethodParameterRector;
use Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;
use Rector\DeadCode\Rector\Node\RemoveNonExistingVarAnnotationRector;
use Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector;
use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector;
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
use Rector\Strict\Rector\Ternary\DisallowedShortTernaryRuleFixerRector;
use Rector\ValueObject\PhpVersion;
return RectorConfig::configure()
->withPhpVersion(PhpVersion::PHP_83)
->withPaths([
__DIR__ . '/config',
__DIR__ . '/src',
__DIR__ . '/tests/bin',
__DIR__ . '/tests/config',
__DIR__ . '/tests/src',
])
->withSkipPath(__DIR__ . '/tests/config/rekalogika-mapper/generated-mappings.php')
->withImportNames(importShortClasses: false)
->withPreparedSets(
deadCode: true,
codeQuality: true,
codingStyle: true,
typeDeclarations: true,
privatization: true,
instanceOf: true,
strictBooleans: true,
symfonyCodeQuality: true,
doctrineCodeQuality: true,
)
->withPhpSets(php82: true)
->withRules([
AddOverrideAttributeToOverriddenMethodsRector::class,
])
->withSkip([
// static analysis tools don't like this
RemoveUnusedVariableAssignRector::class,
// static analysis tools don't like this
RemoveNonExistingVarAnnotationRector::class,
// cognitive burden to many people
SimplifyIfElseToTernaryRector::class,
// potential cognitive burden
FlipTypeControlToUseExclusiveTypeRector::class,
// results in too long variables
CatchExceptionNameMatchingTypeRector::class,
// makes code unreadable
DisallowedShortTernaryRuleFixerRector::class,
RemoveAlwaysTrueIfConditionRector::class => [
__DIR__ . '/src/Proxy/Implementation/ProxyFactory.php',
__DIR__ . '/src/Transformer/Context/AttributesTrait.php',
],
RemoveUnusedPrivatePropertyRector::class => [
__DIR__ . '/tests/src/Fixtures/AccessMethods/ObjectWithVariousAccessMethods.php',
],
RemoveUnusedPrivateMethodParameterRector::class => [
__DIR__ . '/src/DependencyInjection/RekalogikaMapperExtension.php',
],
MakeInheritedMethodVisibilitySameAsParentRector::class => [
__DIR__ . '/tests/src/Common/MapperTestFactory.php',
],
ClassPropertyAssignToConstructorPromotionRector::class => [
__DIR__ . '/tests/src/Fixtures/MapPropertyPathDto/BookWithMapInUnpromotedConstructorDto.php',
__DIR__ . '/tests/src/Fixtures/MapAttribute/SomeObjectWithUnpromotedConstructorDto.php',
],
]);