forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrector.yaml
More file actions
20 lines (17 loc) · 783 Bytes
/
rector.yaml
File metadata and controls
20 lines (17 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
parameters:
exclude_paths:
- "/Fixture/"
- "/Fixtures/"
- "/Expected/"
- "/Source/"
- "/tests/" # for better performance of local changes
# autoload-buggy cases
- "*.php.inc"
# string might not exist for SplitStringClassConstantToClassConstFetchRector
- "packages/Symfony/src/Rector/Console/ConsoleExceptionToErrorEventConstantRector.php"
- "tests/Rector/Argument/ArgumentRemoverRector/ArgumentRemoverRectorTest.php"
- "tests/Rector/Argument/ArgumentDefaultValueReplacerRector/ArgumentDefaultValueReplacerRectorTest.php"
# so Rector code is still PHP 7.1 compatible
php_version_features: '7.1'
services:
Rector\CodingStyle\Rector\Namespace_\ImportFullyQualifiedNamesRector: ~