mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore(tooling): ignore NewlineBetweenClassLikeStmtsRector rector rule
- this rule adds newlines between enum cases which is incorrect and pint already formats all other cases covered by this rule via its class_attributes_separation rule
This commit is contained in:
parent
461df4458f
commit
e5c54f94f4
1 changed files with 2 additions and 0 deletions
|
|
@ -3,6 +3,7 @@
|
|||
declare(strict_types=1);
|
||||
|
||||
use Rector\Caching\ValueObject\Storage\FileCacheStorage;
|
||||
use Rector\CodingStyle\Rector\ClassLike\NewlineBetweenClassLikeStmtsRector;
|
||||
use Rector\Config\RectorConfig;
|
||||
use Rector\Php80\Rector\NotIdentical\MbStrContainsRector;
|
||||
use Rector\Php83\Rector\ClassMethod\AddOverrideAttributeToOverriddenMethodsRector;
|
||||
|
|
@ -31,6 +32,7 @@ return RectorConfig::configure()
|
|||
->withSkip([
|
||||
__DIR__.'/bootstrap/cache',
|
||||
AddOverrideAttributeToOverriddenMethodsRector::class,
|
||||
NewlineBetweenClassLikeStmtsRector::class,
|
||||
])
|
||||
->withCache(__DIR__.'/storage/rector', FileCacheStorage::class)
|
||||
->withPhpSets()
|
||||
|
|
|
|||
Loading…
Reference in a new issue