forked from FOSSBilling/FOSSBilling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrector.php
26 lines (20 loc) · 922 Bytes
/
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
<?php
declare(strict_types=1);
use Rector\Php54\Rector\Array_\LongArrayToShortArrayRector;
use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector;
use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\LevelSetList;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__ . '/src',
//__DIR__ . '/tests', TODO: Add this. Rector actually has rulesets for PHPUnit that we may find useful. https://github.com/rectorphp/rector-phpunit/blob/main/docs/rector_rules_overview.md
]);
$rectorConfig->skip([
__DIR__ . '/src/vendor',
JsonThrowOnErrorRector::class,
LongArrayToShortArrayRector::class, // As much as I'd like to use this, Rector will destroy the formatting of large, multi-line arrays when it applies this & PHP-CS-Fixer doesn't fix it.
]);
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_80,
]);
};