-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrector.php
82 lines (71 loc) · 2.71 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
<?php
declare(strict_types=1);
/*
* This file is part of rekalogika/analytics package.
*
* (c) Priyadi Iman Nurcahyo <https://rekalogika.dev>
*
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/
use Rector\CodeQuality\Rector\Identical\FlipTypeControlToUseExclusiveTypeRector;
use Rector\CodeQuality\Rector\If_\CombineIfRector;
use Rector\CodeQuality\Rector\If_\SimplifyIfElseToTernaryRector;
use Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\Concat\RemoveConcatAutocastRector;
use Rector\DeadCode\Rector\Node\RemoveNonExistingVarAnnotationRector;
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
use Rector\Strict\Rector\If_\BooleanInIfConditionRuleFixerRector;
use Rector\Strict\Rector\Ternary\DisallowedShortTernaryRuleFixerRector;
use Rector\ValueObject\PhpVersion;
return RectorConfig::configure()
->withPhpVersion(PhpVersion::PHP_83)
->withPaths([
__DIR__ . '/packages',
__DIR__ . '/tests/bin',
__DIR__ . '/tests/config',
__DIR__ . '/tests/public',
__DIR__ . '/tests/src',
])
->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([
// potential cognitive burden
FlipTypeControlToUseExclusiveTypeRector::class,
// results in too long variables
CatchExceptionNameMatchingTypeRector::class,
// makes code unreadable
DisallowedShortTernaryRuleFixerRector::class,
// makes code unreadable
SimplifyIfElseToTernaryRector::class,
CombineIfRector::class => [
// don't fix symfony makerbundle boilerplate code
__DIR__ . '/tests/src/App/Entity/*',
],
BooleanInIfConditionRuleFixerRector::class => [
__DIR__ . '/packages/analytics-core/src/SummaryManager/Query/QueryContext.php',
],
RemoveConcatAutocastRector::class => [
// psalm doesn't like it
__DIR__ . '/packages/analytics-core/src/SummaryManager/Item.php',
],
RemoveNonExistingVarAnnotationRector::class => [
// psalm doesn't like it
__DIR__ . '/packages/analytics-core/src/SummaryManager/DefaultSummaryManager.php',
],
]);