No description
Find a file
2023-11-29 17:14:42 +01:00
config update rector rules. bump versions 2023-09-01 07:52:22 +02:00
src Move SetList to LubiSetList 2022-11-04 11:18:22 +01:00
.gitignore init 2022-10-12 19:51:16 +02:00
composer.json bump dependencies 2023-11-29 17:14:42 +01:00
composer.lock bump dependencies 2023-11-29 17:14:42 +01:00
ecs.php Move SetList to LubiSetList 2022-11-04 11:18:22 +01:00
LICENSE Initial commit 2022-10-12 19:41:53 +02:00
README.md add installation instructions to README.md 2022-11-17 15:30:08 +01:00
rector.php Move SetList to LubiSetList 2022-11-04 11:18:22 +01:00

My very opiniated Configurations for Rector and ECS

Installation

composer require --dev lubiana/code-quality

Add my Setlist to ECS in ecs.php:

return static function (\Symplify\EasyCodingStandard\Config\ECSConfig $config): void {
    $config->sets([
        \Lubiana\CodeQuality\LubiSetList::ECS,
    ]);
};

And for rector.php:

return static function (\Rector\Config\RectorConfig $config): void {
    $config->sets([
        \Lubiana\CodeQuality\LubiSetList::RECTOR,
    ]);
};