-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathrector.php
More file actions
111 lines (107 loc) 路 4.67 KB
/
Copy pathrector.php
File metadata and controls
111 lines (107 loc) 路 4.67 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
<?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 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. Called without an argument, the target version
// comes from `composer.json`, so the sets follow the project's PHP version.
->withPhpSets()
#;< 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 deprecation fixes for the installed `drupal/core` version. Both
// calls are required: the provider supplies the sets, `withComposerBased()`
// enables the group. The sets carry the autoload paths and the file
// extensions Drupal executes PHP from, so this file declares neither.
->withSetProviders(DrupalSetProvider::class)
->withComposerBased(drupal: TRUE)
// Additional rules.
->withRules([
DeclareStrictTypesRector::class,
YieldDataProviderRector::class,
])
// Import configuration.
->withImportNames(importNames: FALSE, importDocBlockNames: FALSE);