-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathrector.php
More file actions
131 lines (126 loc) Β· 4.76 KB
/
rector.php
File metadata and controls
131 lines (126 loc) Β· 4.76 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/**
* @file
* Rector configuration.
*
* Rector automatically refactors PHP code to:
* - Upgrade deprecated Drupal APIs
* - Modernize PHP syntax to leverage new language features
* - Improve code quality and maintainability
*
* @see https://github.com/palantirnet/drupal-rector
* @see https://getrector.com/documentation
* @see https://getrector.com/documentation/set-lists
*/
declare(strict_types=1);
use DrupalFinder\DrupalFinderComposerRuntime;
use DrupalRector\Set\Drupal10SetList;
use DrupalRector\Set\Drupal9SetList;
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector;
use Rector\CodeQuality\Rector\ClassMethod\InlineArrayReturnAssignRector;
use Rector\CodeQuality\Rector\Empty_\SimplifyEmptyCheckOnEmptyArrayRector;
use Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector;
use Rector\CodingStyle\Rector\ClassLike\NewlineBetweenClassLikeStmtsRector;
use Rector\CodingStyle\Rector\ClassMethod\NewlineBeforeNewAssignSetRector;
use Rector\CodingStyle\Rector\FuncCall\CountArrayToEmptyArrayComparisonRector;
use Rector\CodingStyle\Rector\Stmt\NewlineAfterStatementRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;
use Rector\Naming\Rector\Assign\RenameVariableToMatchMethodCallReturnTypeRector;
use Rector\Naming\Rector\ClassMethod\RenameParamToMatchTypeRector;
use Rector\Naming\Rector\ClassMethod\RenameVariableToMatchNewTypeRector;
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
use Rector\Php80\Rector\Switch_\ChangeSwitchToMatchRector;
use Rector\Php81\Rector\Array_\ArrayToFirstClassCallableRector;
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\YieldDataProviderRector;
use Rector\Privatization\Rector\ClassMethod\PrivatizeFinalClassMethodRector;
use Rector\Privatization\Rector\MethodCall\PrivatizeLocalGetterToPropertyRector;
use Rector\Privatization\Rector\Property\PrivatizeFinalClassPropertyRector;
use Rector\Strict\Rector\Empty_\DisallowedEmptyRuleFixerRector;
use Rector\TypeDeclaration\Rector\StmtsAwareInterface\DeclareStrictTypesRector;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/web/modules/custom',
__DIR__ . '/web/themes/custom',
__DIR__ . '/web/sites/default/settings.php',
__DIR__ . '/web/sites/default/includes',
__DIR__ . '/tests',
])
->withSkip([
// Specific rules to skip based on project coding standards.
AddOverrideAttributeToOverriddenMethodsRector::class,
ArrayToFirstClassCallableRector::class,
CatchExceptionNameMatchingTypeRector::class,
ChangeSwitchToMatchRector::class,
CompleteDynamicPropertiesRector::class,
CountArrayToEmptyArrayComparisonRector::class,
DisallowedEmptyRuleFixerRector::class,
InlineArrayReturnAssignRector::class,
NewlineAfterStatementRector::class,
NewlineBeforeNewAssignSetRector::class,
NewlineBetweenClassLikeStmtsRector::class,
PrivatizeFinalClassMethodRector::class,
PrivatizeFinalClassPropertyRector::class,
PrivatizeLocalGetterToPropertyRector::class,
RemoveAlwaysTrueIfConditionRector::class,
RenameParamToMatchTypeRector::class,
RenameVariableToMatchMethodCallReturnTypeRector::class,
RenameVariableToMatchNewTypeRector::class,
SimplifyEmptyCheckOnEmptyArrayRector::class,
StringClassNameToClassConstantRector::class => [
__DIR__ . '/web/sites/default/includes/**/*',
],
// Directories to skip.
'*/vendor/*',
'*/node_modules/*',
])
// PHP version upgrade sets - modernizes syntax to PHP 8.4.
// Includes all rules from PHP 5.3 through 8.4.
->withPhpSets(php84: TRUE)
#;< TOOL_BEHAT
// Behat attribute sets - converts annotations to PHP 8 attributes.
->withAttributesSets(behat: TRUE)
#;> TOOL_BEHAT
// Code quality improvement sets.
->withPreparedSets(
codeQuality: TRUE,
codingStyle: TRUE,
deadCode: TRUE,
naming: TRUE,
privatization: TRUE,
typeDeclarations: TRUE,
)
// Drupal-specific deprecation fixes.
->withSets([
Drupal9SetList::DRUPAL_9,
Drupal10SetList::DRUPAL_10,
])
// Additional rules.
->withRules([
DeclareStrictTypesRector::class,
YieldDataProviderRector::class,
])
// Configure Drupal autoloading.
->withAutoloadPaths((function (): array {
$drupalFinder = new DrupalFinderComposerRuntime();
$drupalRoot = $drupalFinder->getDrupalRoot();
return [
$drupalRoot . '/core',
$drupalRoot . '/modules',
$drupalRoot . '/themes',
$drupalRoot . '/profiles',
];
})())
// Drupal file extensions.
->withFileExtensions([
'php',
'module',
'install',
'profile',
'theme',
'inc',
'engine',
])
// Import configuration.
->withImportNames(importNames: FALSE, importDocBlockNames: FALSE);