-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathrector.php
More file actions
135 lines (130 loc) Β· 5.2 KB
/
Copy pathrector.php
File metadata and controls
135 lines (130 loc) Β· 5.2 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
132
133
134
135
<?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\DrupalSetProvider;
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\Stmt\NewlineAfterStatementRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPublicMethodParameterRector;
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\Naming\Rector\Foreach_\RenameForeachValueVariableToMatchExprVariableRector;
use Rector\Naming\Rector\Foreach_\RenameForeachValueVariableToMatchMethodCallReturnTypeRector;
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
use Rector\Php80\Rector\Switch_\ChangeSwitchToMatchRector;
use Rector\Php81\Rector\Array_\ArrayToFirstClassCallableRector;
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\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.
ArrayToFirstClassCallableRector::class,
CatchExceptionNameMatchingTypeRector::class,
ChangeSwitchToMatchRector::class,
CompleteDynamicPropertiesRector::class,
InlineArrayReturnAssignRector::class,
NewlineAfterStatementRector::class,
NewlineBeforeNewAssignSetRector::class,
NewlineBetweenClassLikeStmtsRector::class,
PrivatizeFinalClassMethodRector::class,
PrivatizeFinalClassPropertyRector::class,
PrivatizeLocalGetterToPropertyRector::class,
RemoveAlwaysTrueIfConditionRector::class,
RemoveUnusedPublicMethodParameterRector::class => [
__DIR__ . '/web/modules/custom/*/src/Hook/*',
__DIR__ . '/web/themes/custom/*/src/Hook/*',
],
RenameForeachValueVariableToMatchExprVariableRector::class,
RenameForeachValueVariableToMatchMethodCallReturnTypeRector::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. The provider binds each set to a
// `drupal/core` version and only the sets the installed core satisfies are
// loaded, so the set tracks core upgrades without changing this
// configuration. Both calls are required: the provider supplies the sets,
// `withComposerBased()` enables the group.
->withSetProviders(DrupalSetProvider::class)
->withComposerBased(drupal: TRUE)
// 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);